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

body {
    background-color: #050a17; /* Velvet Dark */
    background-image: radial-gradient(circle at center, #10224d 0%, #050a17 100%);
    font-family: 'EB Garamond', serif;
    color: #f4e8cc; /* Parchment */
}

/* --- Hero Section --- */
.hero-section {
    min-height: 85vh;
    background-color: transparent;
    background-image:
        radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 20px); /* Tapestry feel */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.panel-molding {
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 4px double #8e683c; /* Tarnished Gold */
    pointer-events: none;
}

/* Nav & Buttons */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    z-index: 10;
}

.regal-btn {
    padding: 12px 30px;
    border: 2px solid #8e683c;
    background: #1a0f0a;
    color: #c5a059;
    text-transform: uppercase;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.regal-btn:hover {
    background: #10224d; /* Velvet Red */
    color: #f4e8cc;
    border-color: #c5a059;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.8);
    transform: translateY(-2px);
}

.logo-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 20px;
    background: radial-gradient(circle, rgba(142, 104, 60, 0.3) 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(142, 104, 60, 0.2);
}
.logo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 3px dashed #8e683c;
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
    z-index: -1;
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-logo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.9));
}

/* Venue Label (Positioned Above the Gold Bar) */
.venue-label-container {
    position: absolute;
    bottom: 20px;
    z-index: 20;
}

.ribbon-banner {
    background: #f4e8cc url('https://www.transparenttextures.com/patterns/old-wall.png');
    padding: 10px 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    border: 2px solid #8e683c;
    position: relative;
}
.ribbon-banner::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    border: 1px dashed #8e683c;
    pointer-events: none;
}

.venue-text {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 2.5rem;
    color: #10224d; /* Velvet Red ink */
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}

/* --- Gold Divider --- */
.gold-divider {
    height: 14px;
    background: linear-gradient(90deg, #8e683c, #c5a059, #6a4a25, #c5a059, #8e683c);
    width: 100%;
    position: relative;
    z-index: 15;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    border-top: 1px solid #c5a059;
    border-bottom: 1px solid #4a2e15;
}

/* --- Venue Section (Old Map) --- */
.venue-section {
    min-height: 90vh;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(11, 6, 28, 0.8), rgba(11, 6, 28, 0.8)),
                      url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-overlay-box {
    width: 90%;
    max-width: 95%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    background: #f4e8cc url('https://www.transparenttextures.com/patterns/old-wall.png');
    padding: 20px;
    border: 4px solid #8e683c;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    position: relative;
}
.map-overlay-box::after {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 2px dashed #8e683c;
    pointer-events: none;
}

.iframe-wrapper {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: sepia(0.6) hue-rotate(185deg) contrast(1.2) brightness(0.9); /* Makes the map old but tinted navy blue */
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* --- Footer --- */
footer {
    background: #1a0f0a; /* Dark wood */
    padding: 60px 20px;
    text-align: center;
    border-top: 4px double #8e683c;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-col .label {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.85rem;
    color: #8e683c;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: 700;
}

footer a {
    color: #c5a059;
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    transition: 0.3s;
}

footer a:hover {
    color: #f4e8cc;
    text-shadow: 0 0 10px #c5a059;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 850px) {
    .nav-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 120px;
    }

    .logo-wrapper {
        order: -1; /* Logo on top */
    }

    .main-logo {
        width: 250px; /* Resize logo down on mobile if needed */
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}
