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

:root {
    --primary-gold: #d4af37;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --gray-text: #b0b0b0;
    --accent-red: #8b0000;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.85) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    background: #c19b2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Menu Preview */
.menu-preview {
    padding: 100px 0;
    background: #fff;
}

.menu-preview h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.menu-item p {
    padding: 0 20px;
    color: #666;
    font-size: 0.95rem;
}

.menu-item .price {
    display: block;
    padding: 15px 20px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--light-text);
}

.reservation h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    color: var(--light-text);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: var(--gray-text);
}

.reservation-form textarea {
    margin-bottom: 20px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.map-section {
    padding: 60px 0;
    background: #fafafa;
    text-align: center;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.map-section p {
    margin-bottom: 25px;
    color: #555;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hours-list,
.contact-list {
    list-style: none;
}

.hours-list li,
.contact-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-list li {
    gap: 10px;
    justify-content: flex-start;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    color: var(--light-text);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #c19b2e;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-text);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form 7 Section */
.contact-form-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

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

.contact-form-wrapper input[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.contact-form-wrapper input[type="submit"]:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* CF7 Response Messages */
.contact-form-wrapper .wpcf7-response-output {
    border: 2px solid;
    margin: 20px 0 0;
    padding: 15px;
    border-radius: 2px;
    font-weight: 500;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    border-color: #46b450;
    background: #f0f9f1;
    color: #2e7d32;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
    border-color: #dc3232;
    background: #fef7f7;
    color: #c62828;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 0 0 0 10px;
}

/* CF7 Validation Errors */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
    border-color: #dc3232 !important;
}

/* Two Column Layout for Name/Email */
.contact-form-wrapper .form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section h2 {
        font-size: 2.5rem;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .menu-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}