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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefefe;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8B4513;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8B4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(21, 13, 8, 0.65) 0%, rgba(21, 13, 8, 0.65) 100%), url('image/nathan-dumlao-2z3MOB3kfJU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    background-color: #6b4423;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

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

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

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

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
}

/* Menu Styles */
.menu-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(21, 13, 8, 0.65) 0%, rgba(21, 13, 8, 0.65) 100%), url('image/nathan-dumlao-Y3AqmbmtLQI-unsplash.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.menu-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.menu-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.menu-section {
    padding: 80px 0;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item h4 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b4423;
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    margin-top: 70px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B4513;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #6b4423;
}

/* Access Page */
.access-section {
    padding: 100px 0;
    margin-top: 70px;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.access-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.access-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

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

.info-item h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background-color: #2c1810;
    color: #d2b48c;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: #deb887;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d2b48c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #deb887;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a3429;
    color: #a0a0a0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Initial visibility for above-the-fold content */
.hero-content,
.menu-hero .hero-content,
.access-section h2,
.contact-section h2 {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .menu-hero h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}/* Popular M
enu Section */
.popular-menu {
    padding: 100px 0;
    background-color: #fefefe;
}

.popular-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.popular-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.popular-item-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-item-content {
    padding: 1.5rem;
}

.popular-item h4 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.popular-item .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b4423;
    margin-bottom: 0.5rem;
}

.popular-item p:last-child {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

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

.secondary-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #8B4513;
    text-decoration: none;
    border: 2px solid #8B4513;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #8B4513;
    color: white;
    transform: translateY(-2px);
}

/* News & Events Section */
.news-events {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-date {
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-item h4 {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-item p {
    color: #666;
    line-height: 1.6;
}

/* Customer Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: #fefefe;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-stars {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.reviewer {
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 500;
}

/* Hours & Location Section */
.hours-location {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.hours-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-info,
.location-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hours-info h3,
.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.hours-table {
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    color: #999;
}

.day {
    font-weight: 500;
}

.time {
    color: #8B4513;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.address {
    margin-bottom: 1.5rem;
}

.address p {
    color: #4a4a4a;
    line-height: 1.6;
}

.access-methods {
    margin-bottom: 2rem;
}

.access-methods p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a4a4a;
}

.access-methods ul {
    list-style: none;
    padding-left: 0;
}

.access-methods li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.access-methods li::before {
    content: '•';
    color: #8B4513;
    position: absolute;
    left: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .popular-items {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-info,
    .location-info {
        padding: 2rem;
    }
    
    .popular-menu,
    .news-events,
    .reviews,
    .hours-location {
        padding: 60px 0;
    }
}