:root {
    --gold: #d4af37;
    --dark-gold: #b08d26;
    --deep-burgundy: #400000;
    --dark-burgundy: #2d0000;
    --light-burgundy: #5a1a1a;
    --charcoal: #1a1a1a;
    --light-charcoal: #2a2a2a;
    --ivory: #f8f5f0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: var(--ivory);
    overflow-x: hidden;
    line-height: 1.6;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), 
    url('../images/contact/background.avif') no-repeat center center/cover fixed;
}

/* Header & Navigation */
header {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 2px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.logo h1:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 100%;
}

.login-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    margin-left: 20px;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 1px;
}

.login-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Burger Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: var(--gold);
    height: 3px;
    width: 30px;
    border-radius: 3px;
    transition: var(--transition);
    position: absolute;
    left: 5px;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(45, 0, 0, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 15px 0;
        margin: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    nav a:last-child {
        border-bottom: none;
    }

    .login-btn {
        margin: 25px 0 0;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .tagline {
        display: none;
    }
}

/* Page Hero */
.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('../images/contact/page-hero.avif') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 4rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Sections */
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.contact-detail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--dark-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-detail.phone::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact-detail.email::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact-detail.address::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact-detail.hours::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact-detail h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-detail p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.social-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-contact a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
}

/* Form Styling */
.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--ivory);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Map Styling */
.map-section {
    margin-top: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-container {
    position: relative;
    height: 500px;
    background: #1a1a1a;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(110%) brightness(0.8);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
}

.map-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

/* Hours Section */
.hours-section {
    background: linear-gradient(rgba(64, 0, 0, 0.8), rgba(64, 0, 0, 0.8)), 
    url('../images/contact/hours-section.avif') no-repeat center center/cover;
    padding: 100px 5%;
    margin: 100px 0;
    text-align: center;
    border-radius: 10px;
}

.hours-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.day-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.day-card h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.day-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--dark-burgundy);
    padding: 70px 5% 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }

    nav a {
        margin: 0 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 80px 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tagline {
        display: none;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}