/* --- CSS VARIABLES & THEMING --- */
:root {
    --bg-main: #0b0b0c;
    --bg-surface: #131316;
    --bg-surface-glass: rgba(25, 25, 30, 0.75);
    --accent-gold: #dcfa89;
    --accent-gold-hover: #f3cf65;
    --text-primary: #ffffff;
    --text-secondary: #a0a0aa;
    --border-color: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cantata One', serif;
    --font-body: 'Libre Franklin', sans-serif;
    --max-width: 1200px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- TYPOGRAPHY & HEADERS --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-image: url('images/banner-new.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,11,12,0.4) 0%, rgba(11,11,12,0.85) 100%);
    z-index: 2;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Hero Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(19, 19, 22, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 3;
}

.ticker-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    white-space: nowrap;
    animation: simpleTicker 25s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* --- VIDEO HIGHLIGHT SECTION --- */
.video-highlight {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- ABOUT & STATS SECTION --- */
.about {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subheading {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- DIVISIONS --- */
.divisions {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.division-card {
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.division-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.card-img-placeholder {
    width: 100%;
    height: 320px;
    background-color: #1a1a1d;
    overflow: hidden;
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.division-card:hover .card-img-placeholder img {
    opacity: 1;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.card-body p:first-of-type {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- BRAND STRIP TICKER --- */
.brand-strip {
    background-color: #000;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: brandScroll 20s linear infinite;
}

.brand-track span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- APPLICATION FORM --- */
.apply-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.form-max-width {
    max-width: 800px;
}

.form-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select {
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: var(--accent-gold);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
}

.form-checkbox input {
    margin-top: 0.25rem;
    accent-color: var(--accent-gold);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-main);
    border-left: 3px solid var(--accent-gold);
    padding: 2.5rem;
    border-radius: 0 6px 6px 0;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* --- MINIMALIST FOOTER --- */
.minimal-footer {
    background-color: #080809;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* --- STICKY HEADER PANEL --- */
.sticky-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    /*padding: 1.2rem 0;*/
    padding: 0.25rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo a {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo a span {
    color: var(--accent-gold);
}

.logo img { width: 80px; height: auto; }

/* Contact Info Styling */
.header-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.phone-icon {
    color: var(--accent-gold);
    margin-right: 0.25rem;
    font-size: 0.85rem;
}

/* Fix Hero height adjustment to perfectly offset the sticky bar layout */
.hero {
    height: calc(100vh - 70px); /* Adjusts view frame to account for header area */
}

/* --- GALLERY PORTRAIT SLIDER --- */
.gallery-slider-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem; /* Gives space for the outside arrows */
}

.slider-window {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1.5rem; /* Space between portrait columns */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.portrait-slide {
    /* Calculates width so exactly 3 slides fit in the window viewport taking the gap into account */
    min-width: calc((100% - (1.5rem * 2)) / 3); 
    box-sizing: border-box;
}

.slide-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3; /* Classic editorial portrait frame */
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps portrait frames perfectly centered without distorting */
    display: block;
    transition: transform 0.5s ease;
}

.slide-inner:hover img {
    transform: scale(1.04);
}

/* Slide Caption Overlay */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
    color: var(--text-primary);
    padding: 2rem 1rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.5px;
    display: none;
}

/* --- WHAT YOU LEARN & EXPERIENCE --- */
.experience-section {
    padding: 8rem 0;
    background-color: var(--bg-surface);
}

.experience-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Intro Column */
.experience-intro {
    flex: 1 1 40%;
    position: sticky;
    top: 120px; /* Aligns comfortably relative to your sticky top header panel */
}

.experience-intro h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.experience-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Right Cards Grid Column */
.perks-grid {
    flex: 1 1 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.perk-card {
    flex: 1 1 calc(50% - 0.75rem); /* Splits perfectly into 2 columns */
    min-width: 260px;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 6px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
}

.perk-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-top: 0.2rem;
}

.perk-content h3 {
    font-family: var(--font-body); /* Using modern Inter font for easy scannability inside small modules */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.perk-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Day 2 Showcase Highlight Card Modifications */
.perk-card-highlight {
    flex: 1 1 100%; /* Spans across both columns layout window rules */
    background: linear-gradient(135deg, rgba(25, 25, 30, 0.6) 0%, rgba(11, 11, 12, 0.9) 100%);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.perk-card-highlight h3 {
    font-family: var(--font-heading); /* Gives special header presence to the core event highlight */
    color: var(--accent-gold);
    font-size: 1.25rem;
}

/* Subtle icon pulse visual accent */
@keyframes goldPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.animate-glow {
    animation: goldPulse 3s ease-in-out infinite;
}

/* --- RESPONSIBLE LAYOUT OVERRIDES --- */
@media (max-width: 1024px) {
    .experience-grid {
        flex-direction: column;
        gap: 3rem;
    }
    .experience-intro {
        position: static;
        width: 100%;
        text-align: center;
    }
    .experience-intro h2 {
        font-size: 2.5rem;
    }
    .experience-intro p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .perk-card {
        flex: 1 1 100%; /* Collapse to single column layouts on phones */
    }
    .experience-intro h2 {
        font-size: 2.1rem;
    }
}

/* --- WHO CAN JOIN SECTION --- */
.eligibility-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.eligibility-grid {
    display: flex;
    gap: 5rem;
    align-items: center;
}

/* Left Graphic Display Box Card */
.eligibility-visual-card {
    flex: 1 1 40%;
    min-width: 320px;
    position: relative;
    aspect-ratio: 3 / 4; /* Perfect vertical orientation match */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.visual-card-bg {
    width: 100%;
    height: 100%;
}

.visual-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Soft dark treatment background blend */
    display: block;
}

.visual-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, #131316 0%, rgba(19,19,22,0.8) 60%, rgba(0,0,0,0) 100%);
    box-sizing: border-box;
}

.eligibility-badge {
    background-color: rgba(214, 175, 53, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.visual-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.visual-card-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Right Content Info Box Column */
.eligibility-content {
    flex: 1 1 60%;
}

.eligibility-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.eligibility-intro-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
}

/* Two-Column Unordered Checklists Layout Wrapper */
.checklists-container {
    display: flex;
    gap: 2rem;
}

.checklist-col {
    flex: 1;
}

/* Custom CSS Gold Checkmarks Logic */
.gold-checkmark-list {
    list-style: none;
}

.gold-checkmark-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Generating custom check symbol using borders pseudo element layer */
.gold-checkmark-list li::before {
    content: '';
    position: absolute;
    left: 0.2rem;
    top: 0.2rem;
    width: 6px;
    height: 11px;
    border: solid var(--accent-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gold-checkmark-list li span {
    display: block;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Minor highlight interaction when hovered */
.gold-checkmark-list li:hover span {
    color: var(--text-primary);
}

/* --- RESPONSIVE ADAPTABILITY RULES --- */
@media (max-width: 991px) {
    .eligibility-grid {
        flex-direction: column-reverse; /* Stacks visual graphic under content text elegantly on tablet view */
        gap: 4rem;
    }
    .eligibility-content {
        width: 100%;
    }
    .eligibility-visual-card {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .checklists-container {
        flex-direction: column; /* Collapses nested lists to vertical lines stacked single row column profile */
        gap: 0;
    }
    .eligibility-content h2 {
        font-size: 2.2rem;
    }
    .eligibility-intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Slider Controls adjusted to sit neatly outside the cards */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 0.85rem 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--accent-gold);
    color: #000;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    /* Show 2 items on tablets */
    .portrait-slide {
        min-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 600px) {
    /* Show 1 item on mobile viewports */
    .portrait-slide {
        min-width: 100%;
    }
    .slider-wrapper {
        padding: 0;
    }
    .prev-btn { left: 0.5rem; }
    .next-btn { right: 0.5rem; }
}

/* --- TEAM MEMBER DATA CARD EXTRA INTERACTION --- */
/* --- TEAM MEMBERS SECTION --- */
.team-section {
    padding: 2rem 0;
    background-color: var(--bg-main);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem; /* Spacious separation between team cards */
}

.team-card {
    /* Base width logic: 3 columns clean layout factoring the gaps */
    flex: 1 1 calc((100% - (2.5rem * 2)) / 3); 
    max-width: 360px; /* Restricts profile frame from expanding awkwardly wide */
    min-width: 280px; /* Grid safety fallback for clean scaling */
    background: var(--bg-surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

/* Portrait Optimized Frame */
.team-img-frame {
    width: 100%;
    aspect-ratio: 3 / 4; /* Perfect fashion headshot cropping proportions */
    overflow: hidden;
    background-color: #161619;
}

.team-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-frame img {
    transform: scale(1.03);
}

/* Text details styling */
.team-info {
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.team-role {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* --- RESPONSIVE ADJUSTMENTS FOR TEAM GRID --- */
@media (max-width: 991px) {
    .team-card {
        flex: 1 1 calc((100% - 2.5rem) / 2); /* Drops down to a comfortable 2-column format */
    }
}

@media (max-width: 640px) {
    .team-card {
        flex: 1 1 100%; /* Spans full single-column width elegantly on smartphones */
        max-width: 100%;
    }
    .team-section {
        padding: 5rem 0;
    }
}
.team-card {
    cursor: pointer;
}

.view-more-btn {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.team-card:hover .view-more-btn {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* --- THE MODAL WINDOW OVERLAY --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Keeps it layered securely over the sticky top panel */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Open State Modifier */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 850px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Close Top Right button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 15;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-gold);
}

/* Layout Alignment Grid inside Modal Box */
.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}

.modal-img-container {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #161619;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 550px;
    /*overflow-y: auto;  Adds scroll behavior inside text area if bios run long */
    overflow: hidden;
}

.modal-details h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.modal-role {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.modal-divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 1.5rem 0;
}

.modal-full-bio {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    flex-grow: 1;
    overflow-y: auto;
}

/* 1. Target the specific scrolling box inside the modal */
.modal-details {
    overflow-y: auto;
    padding-right: 1.5rem; /* Creates comfortable breathing room between text and scrollbar */
    
    /* Modern standard properties for Firefox support */
    scrollbar-width: 3px;
    scrollbar-color: var(--accent-gold) rgba(20, 20, 25, 0.5);
}

/* 2. Custom WebKit Scrollbar styling (Chrome, Safari, Edge) */
.modal-details::-webkit-scrollbar {
    width: 2px; /* Extremely thin, elegant width */
}

/* The track background behind the scrollbar */
.modal-details::-webkit-scrollbar-track {
    background: rgba(20, 20, 25, 0.5); /* Matches your dark card surface background */
    border-radius: 10px;
}

/* The actual draggable golden bar */
.modal-details::-webkit-scrollbar-thumb {
    background: var(--accent-gold); /* Or use your hex color directly: #d4af37 */
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Subtle glow effect when hovering over the scrollbar */
.modal-details::-webkit-scrollbar-thumb:hover {
    background: #fff; /* Shifts slightly brighter or deeper gold on active interaction */
}

/* --- RESPONSIVE MODAL MEDIA QUERIES --- */
@media (max-width: 768px) {
    .modal-body-grid {
        grid-template-columns: 1fr;
    }
    .modal-img-container {
        height: 300px;
        aspect-ratio: auto;
    }
    .modal-details {
        padding: 2rem;
        max-height: 350px;
    }
    .modal-details h3 {
        font-size: 1.6rem;
    }
}

/* Responsive adjustment for slider fonts */
@media (max-width: 768px) {
    .slide-caption { font-size: 0.95rem; padding: 1.5rem 1rem 1rem; }
    .slider-btn { padding: 0.6rem 0.8rem; font-size: 1.2rem; }
}

/* --- RESPONSIVE ADJUSTMENTS FOR HEADER --- */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .header-contact {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-link {
        font-size: 0.85rem;
    }
}

/* --- ANIMATIONS --- */
@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-links a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .form-wrapper {
        padding: 1.5rem;
    }
}

/* --- WHY MWV SECTION --- */
.why-mwv-section {
    padding: 5rem 0;
    background-color: var(--bg-surface);
}

.why-mwv-grid {
    display: flex;
    gap: 5rem;
    align-items: center;
}

/* Left Column: Problem Typography */
.why-mwv-problem {
    flex: 1 1 55%;
}

.why-mwv-problem h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--accent-gold);
}

.why-mwv-problem .main-para {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Uncertainty List Items */
.uncertainty-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.uncertainty-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cross-icon {
    color: #ef4444; /* Clean crimson red for contrast */
    font-size: 0.9rem;
    background-color: rgba(239, 68, 68, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.uncertainty-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Right Column: Premium Solution Box */
.why-mwv-solution {
    flex: 1 1 45%;
    min-width: 320px;
}

.solution-card-inner {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Top accent border highlight layout */
.solution-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.solution-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.solution-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.solution-card-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-action {
    margin-top: 2.5rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .why-mwv-grid {
        flex-direction: column;
        gap: 4rem;
    }
    .why-mwv-problem, .why-mwv-solution {
        width: 100%;
    }
    .why-mwv-solution {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .why-mwv-problem h2 {
        font-size: 2.2rem;
    }
    .why-mwv-problem .main-para {
        font-size: 1.05rem;
    }
    .solution-card-inner {
        padding: 2.5rem 1.5rem;
    }
}

/* --- THE RUNWAY EXPERIENCE SECTION --- */
.runway-experience-section {
    padding: 5rem 0;
    position: relative;
    background-color: #08080a; /* Ultra dark back-drop for luxury feel */
    overflow: hidden;
}

/* Atmospheric Ambient Glow behind the section */
.runway-experience-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.runway-container {
    position: relative;
    z-index: 2;
}

/* Live Badge with Pulse Animation */
.runway-badge-wrap {
    margin-bottom: 3rem;
}

.runway-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-weight: 500;
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: livePulse 2s infinite;
}

/* Structural Split Grid Layout */
.runway-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Column Styling */
.runway-title-block h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-top: 0.5rem;
    letter-spacing: -1px;
}

.runway-title-block img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Soft gold structural border */
    
    /* Multi-layered shadow: crisp inner glow + deep expansive outer atmospheric glow */
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.2), 
        0 10px 30px rgba(212, 175, 55, 0.15), 
        0 20px 60px rgba(0, 0, 0, 0.5);
        
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.subheading-alt {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.runway-decorative-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 2rem;
}

/* Right Column Spotlight Card Layout */
.runway-spotlight-card {
    background: rgba(20, 20, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem 3.5rem;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.runway-spotlight-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.runway-spotlight-card .highlight-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.runway-spotlight-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Mini features tag strip line */
.runway-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.mini-feature {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-gold {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Button Glow Feature Micro Animation */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 53, 0.1);
    transition: all 0.3s ease;
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 53, 0.3);
    transform: translateY(-2px);
}

/* Animations */
@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px var(--accent-gold); }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .runway-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .runway-title-block h2 {
        font-size: 3.2rem;
    }
    .runway-spotlight-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .runway-experience-section {
        padding: 6rem 0;
    }
    .runway-title-block h2 {
        font-size: 2.5rem;
    }
    .runway-spotlight-card h3 {
        font-size: 1.6rem;
    }
    .runway-spotlight-card .highlight-text {
        font-size: 1.05rem;
    }
    .runway-mini-features {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* --- WHO WE ARE SECTION --- */
.about-mwv-section {
    padding: 5rem 0;
    background-color: var(--bg-main);
    position: relative;
}

/* Luxury back-glow visual highlight element */
.about-mwv-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 75%);
    pointer-events: none;
}

.about-mwv-grid {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

/* Left Column: Bold Headline & Manifesto Quote */
.about-mwv-headline {
    flex: 1 1 45%;
}

.about-mwv-headline h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.manifesto-quote-wrap {
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.manifesto-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1.3;
    font-style: italic;
}

.headline-subtext {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Right Column: Detailed Narrative Card Box */
.about-mwv-narrative {
    flex: 1 1 55%;
}

.narrative-card {
    background: var(--bg-surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.narrative-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.narrative-card p:last-of-type {
    margin-bottom: 0;
}

.narrative-card .highlight-intro {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Horizontal pill tag strip rules */
.narrative-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
}

.pillar-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    background-color: rgba(212, 175, 53, 0.08);
    border: 1px solid rgba(212, 175, 53, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* --- RESPONSIVE LAYOUT BREAKPOINTS --- */
@media (max-width: 991px) {
    .about-mwv-grid {
        flex-direction: column;
        gap: 4rem;
    }
    .about-mwv-headline, .about-mwv-narrative {
        width: 100%;
    }
    .about-mwv-headline h2 {
        font-size: 2.8rem;
    }
    .manifesto-quote {
        font-size: 1.5rem;
    }
    .narrative-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .about-mwv-section {
        padding: 6rem 0;
    }
    .about-mwv-headline h2 {
        font-size: 2.3rem;
    }
    .narrative-card .highlight-intro {
        font-size: 1.05rem;
    }
    .narrative-card p {
        font-size: 0.95rem;
    }
    .narrative-pillars {
        gap: 0.5rem;
    }
}

/* --- SILENT SPAM FILTER HONEYPOT --- */
.field-trap {
    display: none !important;
    visibility: hidden !important;
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --- CUSTOM ALERT MODAL --- */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 6, 0.8); /* Deep backdrop wrap */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999; /* Higher than everything else */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active Class trigger state */
.custom-alert-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-alert-card {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(212, 175, 53, 0.2); /* Soft gold structural line */
    padding: 3rem 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-alert-overlay.active .custom-alert-card {
    transform: scale(1);
}

/* Icon Sphere Style */
.custom-alert-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 53, 0.08);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 53, 0.1);
}

.custom-alert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.custom-alert-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Low Profile Modal Button */
.btn-alert-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-alert-close:hover {
    background: var(--text-primary);
    color: #050506;
    border-color: var(--text-primary);
}

/* Dynamic State Modifier Variations */
.custom-alert-card.error-state .custom-alert-icon-box {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

/* --- FLOATING BACK TO TOP BUTTON --- */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: rgba(20, 20, 25, 0.85); /* Dark surface matching card elements */
    border: 1px solid rgba(212, 175, 53, 0.3); /* Subtle gold boundary outline */
    color: var(--accent-gold);                 /* Gold arrow icon indicator */
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;                             /* Stays floating comfortably over content layers */
    
    /* Reveal configuration states */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Active appearance state */
.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Interactive focus highlights */
.btn-back-to-top:hover {
    background-color: var(--accent-gold);
    color: #050506;                            /* Inverts arrow to dark tone on hover */
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 53, 0.4);
}