/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
}

.header-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* =========================
   LOGO
========================= */

.logo-container img {
    max-height: 78px;
    width: auto;
    display: block;
    object-fit: contain;
}


/* =========================
   NAVIGATION
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav>a,
.dropbtn {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}


/* Underline hover effect */

.main-nav>a::after,
.dropbtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #8c1d2c;
    transition: width 0.3s ease;
}

.main-nav>a:hover,
.dropbtn:hover,
.main-nav>a.active,
.dropdown.active-parent .dropbtn {
    color: #8c1d2c;
}

.main-nav>a:hover::after,
.main-nav>a.active::after,
.dropbtn:hover::after,
.dropdown.active-parent .dropbtn::after {
    width: 100%;
}


/* =========================
   DROPDOWN
========================= */

.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dropdown-content a:hover,
.dropdown-content a.active-sub {
    background: rgba(140, 29, 44, 0.08);
    color: #8c1d2c;
}


/* =========================
   BUTTON
========================= */

.btn-burgundy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8c1d2c;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-burgundy:hover {
    background: #6f1421;
    color: #fff;
}

.mobile-btn {
    display: none;
}

.desktop-btn {
    display: inline-flex;
}


/* =========================
   MOBILE TOGGLE
========================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #111;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1199px) {
    .header-wrap {
        padding: 10px 20px;
    }
    .main-nav {
        gap: 24px;
    }
    .main-nav>a,
    .dropbtn {
        font-size: 12px;
        letter-spacing: 0.12em;
    }
    .btn-burgundy {
        padding: 12px 22px;
        font-size: 11px;
    }
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 991px) {
    .header-wrap {
        padding: 12px 18px;
    }
    .logo-container img {
        max-height: 64px;
    }
    .menu-toggle {
        display: flex;
    }
    .desktop-btn {
        display: none;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        display: none;
        border-top: 1px solid #eee;
    }
    .main-nav.show {
        display: flex;
    }
    .main-nav>a,
    .dropbtn {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        font-size: 13px;
        letter-spacing: 0.08em;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .main-nav>a::after,
    .dropbtn::after {
        display: none;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        min-width: 100%;
        padding: 0 0 0 12px;
        display: none;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        padding: 12px 0;
        border-bottom: 1px solid #f3f3f3;
        font-size: 13px;
    }
    .dropdown:hover .dropdown-content {
        transform: none;
    }
    .dropdown:hover .arrow {
        transform: none;
    }
    .dropdown.active .arrow {
        transform: rotate(180deg);
    }
    .mobile-btn {
        display: inline-flex;
        margin-top: 18px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .header-wrap {
        padding: 10px 15px;
    }
    .logo-container img {
        max-height: 56px;
    }
    .main-nav {
        padding: 18px 16px;
    }
    .btn-burgundy {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .logo-container img {
        max-height: 50px;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .menu-toggle span {
        width: 24px;
    }
    .main-nav>a,
    .dropbtn {
        font-size: 12px;
    }
    .dropdown-content a {
        font-size: 12px;
    }
    .mobile-btn {
        font-size: 11px;
        padding: 13px 16px;
    }
}

#heroCarousel .carousel-item {
    position: relative;
    height: 100vh;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#heroCarousel .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 64%);
    z-index: 1;
}

#heroCarousel .carousel-caption {
    z-index: 2;
    position: absolute;
}

.carousel-caption {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 0 20px;
}

.carousel-caption h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1000px;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 2;
}


/* Paragraph */

.carousel-caption p {
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
    max-width: 850px;
    margin: 0 auto;
}


/* =========================
   Large Laptop
========================= */

@media (max-width: 1399px) {
    .carousel-caption h2 {
        font-size: 62px;
    }
    .carousel-caption p {
        font-size: 18px;
    }
}


/* =========================
   Laptop / Tablet
========================= */

@media (max-width: 1199px) {
    .carousel-caption h2 {
        font-size: 52px;
        max-width: 850px;
    }
    .carousel-caption p {
        font-size: 17px;
        max-width: 700px;
    }
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {
    .carousel-item,
    .carousel-item img {
        height: 85vh;
    }
    .carousel-caption {
        padding: 0 30px;
    }
    .carousel-caption h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .carousel-caption p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 620px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 767px) {
    .carousel-item,
    .carousel-item img {
        height: 75vh;
        min-height: 500px;
    }
    .carousel-caption {
        padding: 0 20px;
    }
    .carousel-caption h2 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    .carousel-caption p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }
    .carousel-caption p br {
        display: none;
    }
}


/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {
    .carousel-item,
    .carousel-item img {
        height: 70vh!important;
        min-height: 460px;
    }
    .carousel-caption h2 {
        font-size: 45px;
        margin-bottom: 12px;
    }
    .carousel-caption p {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 40px;
    }
}


/* ==========================
   ABOUT SECTION
========================== */

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 70px auto;
}


/* .about-content {
    flex: 1;
    max-width: 520px;
} */

.about-content p {
    font-size: 17px;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.75;
}

.about-content strong {
    font-weight: 800;
}


/* ==========================
   DIRECTOR CARD
========================== */

.director-card {
    /* flex: 1;
    max-width: 500px; */
    position: relative;
    overflow: hidden;
}

.director-card img {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
}

.director-overlay {
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #6d001a;
    padding: 0 20px;
}

.director-overlay h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.1;
}

.director-overlay p {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .about-content,
    .director-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .director-overlay h3 {
        font-size: 28px;
    }
}