/* =========================================
   GLOBAL CSS (THINK DESIGN SYSTEM)
   ========================================= */

:root {
    /* Colors */
    --color-gold: #e2ba4d;
    --color-gold-hover: #cfa840;
    --color-navy: #192a3a;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-gray: #666666;
    --color-dark: #111111;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max: 1300px;
    --padding-x: 2rem;
    --border-radius-pill: 50px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    width: 100%;
}

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

/* Buttons */
.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.15); /* Slightly frosty */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    font-size: 0.8rem; 
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.9rem;
}

/* Lucide Icon Utilities */
svg[class*="arrow-icon"],
svg[class*="rotated"] {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Arrow Icon */
.arrow-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Rotated chevron for dropdowns */
svg.rotated {
    transform: rotate(180deg);
}

.btn-outline-glass:hover .arrow-icon,
.btn-outline:hover .arrow-icon,
.btn-outline-navy:hover .arrow-icon,
.btn-submit:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-modal.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: -1;
}

.video-modal-container {
    position: relative;
    width: 90vw;
    max-width: 1000px;
    height: 56.25vw;
    max-height: 70vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .video-modal-container {
        width: 95vw;
        height: auto;
    }

    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}
