/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #8B7355;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6d5a42;
}

/* Header */
.header {
    background-color: #fff;
    padding: 30px 0 20px;
    text-align: center;
}

.logo {
    margin-bottom: 10px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-small {
    font-size: 16px;
    color: #8B6914;
    font-style: italic;
    font-weight: 600;
}

.logo-large {
    font-size: 32px;
    color: #C41E3A;
    font-weight: 700;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Navigation */
.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 5px 0;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #8B6914;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 50px;
    color: #fff;
}

.hero-content h2 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background-color: #fff;
}

.welcome-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.welcome-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.welcome-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-circle.main {
    width: 280px;
    height: 280px;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu CTA Section */
.menu-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.menu-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
}

.menu-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.menu-cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.menu-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.qr-code {
    margin-bottom: 25px;
}

.qr-code img {
    width: 150px;
    height: 150px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
}

/* Main Menu Section */
.main-menu {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.main-menu h2 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-item {
    text-align: center;
}

.menu-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-image:hover img {
    transform: scale(1.05);
}

.menu-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #8B6914;
}

/* Reservation Section */
.reservation {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
}

.reservation-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.reservation-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.reservation-content p {
    font-size: 18px;
    opacity: 0.9;
}

.phone-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.phone-link:hover {
    color: #d4a574;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #fff;
}

.location h2 {
    font-size: 32px;
    font-weight: 400;
    color: #8B7355;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.85);
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.instagram-link {
    color: #d4a574;
    font-size: 16px;
    text-decoration: underline;
}

.instagram-link:hover {
    color: #fff;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 5px;
}

.footer-column .phone-link {
    font-size: 18px;
    text-decoration: underline;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.wp-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 10px;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .image-circle {
        width: 150px;
        height: 150px;
    }
    
    .image-circle.main {
        width: 200px;
        height: 200px;
    }
    
    .menu-cta-content h2 {
        font-size: 32px;
    }
    
    .menu-image {
        width: 220px;
        height: 220px;
    }
    
    .reservation-content h2 {
        font-size: 36px;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul {
        gap: 15px;
    }
    
    .nav a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .welcome-content h2,
    .main-menu h2,
    .location h2 {
        font-size: 24px;
    }
    
    .menu-cta-content h2 {
        font-size: 28px;
    }
    
    .reservation-content h2 {
        font-size: 28px;
    }
}
