/* Base Theme & Variables */
:root {
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --dark: #0f0f0f;
    --black: #050505;
    --cream: #fdfcf9;
    --white: #ffffff;
    --text-muted: #888888;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-shadow {
    box-shadow: var(--shadow-subtle);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Customization */
h1,
h2,
h3,
h4,
.brand-text {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.text-gold {
    color: var(--gold) !important;
}

.ls-wide {
    letter-spacing: 3px;
}

/* Top Ticker */
.top-ticker {
    position: fixed;
    top: 0;
    width: 100%;
    height: 35px;
    background: var(--gold);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1050;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-animation 40s linear infinite;
}

.ticker-content span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

@keyframes ticker-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Navigation */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    top: 35px;
    /* Offset for ticker */
}

#mainNav.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    top: 35px;
    /* Maintain offset when scrolled */
}

.navbar-logo {
    height: 45px;
    /* Decreased for a sleeker look */
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 60px;
    /* Decreased for a cleaner footer */
    width: auto;
    transition: var(--transition);
}

.nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-enquiry-blink {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 6px 15px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    letter-spacing: 1px;
    margin-left: 10px !important;
    margin-right: auto !important;
    animation: nav-blink 1.5s infinite;
    text-decoration: none;
    display: inline-block;
}

@keyframes nav-blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
        color: var(--white) !important;
        border-color: var(--white);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-enroll {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 25px !important;
    border-radius: 0;
    font-weight: 600;
}

/* --- Couture Hero (New) --- */
.hero-new {
    height: 110vh;
    /* Increased to account for top spacing */
    min-height: 850px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Space for ticker + nav */
    color: var(--white);
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    font-family: var(--font-heading);
    letter-spacing: -10px;
}

.hero-content-new {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-display-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Button & Links */
.hero-action-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-luxe-primary {
    background: var(--gold);
    color: var(--black);
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
}

.btn-luxe-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    color: var(--black);
}

.hero-link-secondary {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-link-secondary:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* Visual Panel */
.hero-visual-container {
    padding-left: 50px;
    position: relative;
    z-index: 5;
}

.hero-main-frame {
    width: 100%;
    height: 600px;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 1.5s ease;
}

.hero-visual-container:hover .hero-main-frame {
    border-color: var(--gold);
}

.hero-visual-container:hover .hero-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.floating-box-gold {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.floating-text-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    animation: rotate 20s linear infinite;
}

.circle-text {
    font-family: var(--font-body);
    font-size: 8px;
    fill: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Animations & Hints */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 50px;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hint-text {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.hint-line {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .hero-display-title {
        font-size: 4rem;
    }

    .hero-new {
        min-height: 700px;
        text-align: center;
    }

    .hero-action-group {
        flex-direction: column;
    }

    .hero-description {
        margin: 0 auto 30px;
    }
}

/* About Section */
.py-huge {
    padding: 120px 0;
}

.bg-cream {
    background-color: var(--cream);
}

.about-img-stack {
    position: relative;
    padding: 40px;
}

.main-img {
    z-index: 2;
    position: relative;
}

.secondary-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 10px solid var(--cream);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
}

.section-title i {
    color: var(--gold);
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    margin-right: 15px;
}

/* Course Cards */
.course-card {
    background: var(--black);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.course-img-wrapper {
    overflow: hidden;
    height: 400px;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.7;
}

.course-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(20px);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.course-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.course-card:hover .course-content {
    transform: translateY(0);
}

.course-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.course-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.course-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Gallery Section Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.pos-top {
    object-position: center 20%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Contact Styles */
.contact-form-card {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 5px solid var(--gold);
    transition: var(--transition);
}

.custom-input {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
    background: #fdfdfd;
    transition: var(--transition);
    font-size: 0.95rem;
}

.custom-input:focus {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    background: var(--white);
}

.luxe-btn {
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
}

.luxe-btn:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

/* Video Showcase Section */
.video-card {
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.video-card h5 {
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Social Links */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

}

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {

    /* Navbar Mobile Fixes */
    #mainNav {
        background: rgba(0, 0, 0, 0.95);
        padding: 15px 0;
    }

    .navbar-collapse {
        background: var(--black);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-link {
        margin: 10px 0;
        text-align: center;
    }

    .btn-enroll {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    /* Hero Responsive */
    .hero-new {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-display-title {
        font-size: 3.5rem;
        /* Smaller for mobile */
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .hero-action-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-luxe-primary {
        width: 100%;
        max-width: 280px;
    }

    .hero-visual-container {
        padding-left: 0;
        margin-top: 50px;
    }

    .hero-main-frame {
        height: 450px;
        border-radius: 200px 200px 0 0;
    }

    .hero-bg-text {
        font-size: 40vw;
        /* Even larger relative background for mobile impact */
        top: 30%;
    }

    .hero-scroll-hint {
        display: none;
        /* Hide scroll hint on mobile to save space */
    }

    /* Sections Padding */
    .py-huge {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Image Stacks */
    .about-img-stack {
        padding: 20px;
    }

    .secondary-img {
        width: 120px;
        border-width: 5px;
    }

    /* Contact Section */
    .contact-form-card {
        padding: 30px !important;
        margin-top: 30px;
    }

    /* Footer Mobile */
    footer .brand-text {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-display-title {
        font-size: 2.8rem;
    }

    .hero-main-frame {
        height: 350px;
    }
}

/* Director Section Styles */
.director-card {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    padding: 60px 40px !important;
    /* Balanced padding */
}

.director-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.director-img-wrapper {
    position: relative;
    width: 250px;
    /* Larger circular display */
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    /* Shifting the focus down to show more headroom if available, or just nudging the person lower */
    transition: var(--transition);
}

.director-card:hover .director-img {
    transform: scale(1.1);
}

/* Career Opportunities Styles */
.career-item {
    background: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    height: 100%;
    border-radius: 15px;
}

.career-item:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
}

.career-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.alert-gold {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--dark);
    font-weight: 500;
}

/* Course & Highlight Enhancements */
.gold-hr {
    width: 30px;
    border: 2px solid var(--gold);
    opacity: 1;
    margin: 1rem auto;
}

.highlight-list li {
    padding: 12px 20px;
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-weight: 500;
    transition: var(--transition);
}

.highlight-list li:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--gold);
}

.bg-black-depth {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

/* Footer Styling */
footer {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

footer .brand-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px !important;
    letter-spacing: 5px;
    color: var(--gold) !important;
}

footer p.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    /* High contrast white-ish */
    font-size: 1.1rem;
    font-weight: 300;
}

footer hr {
    margin: 40px 0;
    border-color: rgba(212, 175, 55, 0.2);
}

footer .small.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
    letter-spacing: 1px;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
    color: var(--white) !important;
    text-decoration: none;
}

footer .social-links a:hover {
    background: var(--gold);
    color: var(--black) !important;
    border-color: var(--gold);
    transform: translateY(-5px);
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}