:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --gold: #d4a574;
    --cream: #f5f0e8;
    --text: #333;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary);
    color: var(--cream);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 0.8rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    max-height: 70px;
    max-width: 200px;
    width: auto;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

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

.nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)),
                url('../images/gallery/detour cover1.jpg') center/cover no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 60px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-section {
    padding: 5rem 2rem;
    background: var(--secondary);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--primary);
    padding: 2.5rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--cream);
}

.info-item a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--gold);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.hours-table tr {
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.hours-table td {
    padding: 0.75rem 0;
    color: var(--cream);
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--gold);
    width: 40%;
}

.hours-table td:last-child {
    text-align: right;
}

.map-container {
    background: var(--primary);
    padding: 2.5rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.map-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.map-placeholder iframe {
    display: block;
}

.map-placeholder p {
    color: var(--gold);
    text-align: center;
    padding: 1rem;
}

.map-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #e65100;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.map-link:hover {
    background: #bf360c;
    transform: translateY(-2px);
}

.social-section {
    padding: 3rem 2rem;
    background: var(--primary);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gold);
    color: var(--primary);
}

footer {
    background: var(--primary);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

footer p {
    color: var(--gold);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .logo img {
        max-height: 55px;
        max-width: 160px;
    }
}
