* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #fff;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #000;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    will-change: transform;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 0;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.content {
    max-width: 700px;
    margin: 0 auto;
}

.full-width-intro {
    width: 80vw !important;
    max-width: 600px !important;
    min-width: unset !important;
    height: 320px;
    min-height: 180px;
    border-radius: 18px;
    margin: 0 auto;
    display: block;
}

.language-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
}

.lang-btn.active, .lang-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: #fff;
    box-shadow: none;
}

.bio-content {
    display: none;
    color: rgba(255, 255, 255, 0.9);
}

.bio-content.active {
    display: block;
}

.bio-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    /* font-size: 1.1em; */
    /* text-align: center; */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form button {
    padding: 15px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.download-btn {
    padding: 15px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header {
        padding: 40px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .content {
        padding: 0 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    mix-blend-mode: multiply;
}

.hero-image:hover .main-image {
    transform: scale(1.1);
}

.highlight-video {
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-video video {
    width: 90%;
    max-width: 800px;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    outline: none;
    background: #111;
}

.gallery-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #222;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 32px rgba(0,0,0,0.5);
}

.intro-section {
    width: 100vw;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.intro-bg {
    position: relative;
    width: 100vw;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.intro-image {
    width: 100vw;
    min-height: 60vh;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1);
}
.intro-overlay {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.intro-content {
    position: absolute;
    left: 0; right: 0; bottom: 8vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
}
.intro-logo {
    width: 120px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
.intro-title {
    font-size: 2.8em;
    font-weight: bold;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    text-align: center;
}
.intro-subtitle {
    font-size: 1.5em;
    color: #cfcfcf;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
@media (max-width: 700px) {
    .intro-title { font-size: 1.5em; }
    .intro-logo { width: 70px; }
    .intro-content { bottom: 4vh; }
    .intro-section, .intro-bg, .intro-image { min-height: 38vh; }
}
.highlight-video video {
    width: 60%;
    max-width: 420px;
    min-width: 220px;
}

.small-intro-image {
    max-width: 420px;
    width: 60vw;
    min-height: unset;
    height: 320px;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.intro-presskit {
    font-size: 1.3em;
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: center;
}
@media (max-width: 700px) {
    .small-intro-image { max-width: 90vw; height: 160px; }
    .intro-presskit { font-size: 1em; }
}

@media (max-width: 900px) {
    .full-width-intro { height: 220px; }
    .intro-content { bottom: 2vh; }
}
@media (max-width: 700px) {
    .container { padding: 0; }
    .full-width-intro { width: 98vw !important; max-width: 98vw !important; height: 160px; }
    .intro-logo { width: 60px; }
    .intro-title { font-size: 1.1em; }
    .intro-content { bottom: 1vh; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-grid img { height: 90px; }
    .highlight-video video { width: 90vw !important; max-width: 98vw !important; min-width: 120px; }
    .lang-btn { font-size: 0.85em; padding: 7px 10px; }
}
@media (max-width: 480px) {
    .full-width-intro { height: 70px; }
    .intro-logo { width: 38px; }
    .intro-title { font-size: 0.8em; }
    .gallery-grid img { height: 60px; }
}

.center-head {
    object-position: center 30%;
}
@media (max-width: 700px) {
    .center-head { object-position: center 20%; }
}

.social-icon-circle {
    width: 60px;
    height: 60px;
    background: #181818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    transition: box-shadow 0.2s, background 0.2s;
    pointer-events: auto;
    cursor: pointer;
}
.social-icon-link {
    display: inline-block;
    transition: transform 0.2s;
    cursor: pointer;
    pointer-events: auto;
}
.social-icon-link:hover .social-icon-circle {
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
    background: #222;
}
.social-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: none;
    transition: filter 0.2s;
    pointer-events: auto;
    cursor: pointer;
}
@media (max-width: 700px) {
    .social-icon-circle { width: 40px; height: 40px; }
    .social-icon-img { width: 22px; height: 22px; }
}

@media (max-width: 700px) {
    header {
        padding: 24px 0 12px 0;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }
    .social-logos-bar {
        position: static !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px !important;
        margin: 0 auto 10px auto !important;
        width: 100vw !important;
        justify-content: center !important;
        padding: 0 2vw;
    }
    .social-logos-bar a {
        font-size: 0.95em;
        padding: 7px 10px !important;
        min-width: 0;
        flex: 1 1 40%;
        justify-content: center;
    }
    .intro-section, .intro-bg, .intro-image {
        min-height: 32vh;
    }
    .intro-content {
        bottom: 0.5vh;
        padding: 0 2vw;
    }
    .highlight-video {
        margin-top: 18px !important;
        margin-bottom: 0.7rem !important;
    }
    .highlight-video video {
        width: 98vw !important;
        max-width: 99vw !important;
        min-width: 100px !important;
        border-radius: 10px !important;
    }
    .gallery-content {
        padding: 0 2vw;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0;
    }
    .gallery-grid img {
        height: 60vw;
        min-height: 80px;
        max-height: 180px;
    }
    .content {
        padding: 0 2vw;
    }
    .contact-form {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .contact-form input, .contact-form button {
        font-size: 1em;
        padding: 12px;
    }
    .whatsapp-btn {
        width: 100%;
        font-size: 1em !important;
        padding: 12px 0 !important;
        margin: 12px 0 0 0 !important;
        border-radius: 6px !important;
    }
    .language-selector {
        gap: 8px;
    }
    .lang-btn {
        font-size: 0.9em;
        padding: 7px 8px;
    }
    h1, .intro-title {
        font-size: 1.1em !important;
    }
    h2 {
        font-size: 1em !important;
        margin-bottom: 18px !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid img {
        height: 38vw;
        min-height: 48px;
        max-height: 90px;
    }
    .intro-logo {
        width: 32px !important;
    }
    .intro-title {
        font-size: 0.7em !important;
    }
    .contact-form input, .contact-form button {
        font-size: 0.95em;
        padding: 10px;
    }
}

@media (max-width: 700px) {
    .intro-image,
    .small-intro-image,
    .full-width-intro {
        width: 96vw !important;
        max-width: 96vw !important;
        min-width: 0 !important;
        height: 38vw !important;
        min-height: 110px !important;
        max-height: 220px !important;
        margin: 0 auto 10px auto !important;
        display: block;
        object-fit: cover;
        border-radius: 14px !important;
        box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    }
    .intro-bg {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-height: 38vh;
    }
    .social-logos-bar {
        flex-wrap: wrap;
        gap: 10px !important;
        padding: 0 2vw;
        margin-bottom: 10px !important;
    }
    .social-logos-bar a {
        flex: 1 1 100%;
        min-width: 120px;
        max-width: 220px;
        justify-content: center;
        font-size: 1em;
        padding: 10px 0 !important;
        border-radius: 2em !important;
        margin: 0 auto;
    }
    .social-logos-bar img {
        width: 22px !important;
        height: 22px !important;
    }
}
@media (max-width: 480px) {
    .intro-image,
    .small-intro-image,
    .full-width-intro {
        height: 28vw !important;
        min-height: 70px !important;
        max-height: 120px !important;
    }
    .social-logos-bar a {
        min-width: 90px;
        font-size: 0.95em;
        padding: 8px 0 !important;
    }
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff !important;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.whatsapp-btn:hover {
    background-color: #1ebe5d;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
} 
