:root {
    --primary-color: #D4AF37; /* Goud kleur van het logo */
    --secondary-color: #121212; /* Zwart van het logo */
    --accent-color: #F1F1F1; /* Licht accent voor contrast */
    --text-color: #333333;
    --light-text: #FFFFFF;
    --light-gold: #F5E7B8; /* Lichtere versie van goud voor achtergronden */
    --dark-gold: #AA8C2C; /* Donkerdere versie van goud voor hover states */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Noto Serif JP', serif; /* Japanse stijl lettertype */
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: transparent;
    color: var(--light-text);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1500;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation Menu */
.main-nav {
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    height: 50px;
}

.nav-menu li {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

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

.btn-nav {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none !important;
}

.btn-nav:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

.section-heading p {
    color: #777;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background-color: var(--light-gold);
    background-image: url('/images/pattern.png');
    background-blend-mode: overlay;
    background-opacity: 0.1;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Menu Preview Section */
.menu-preview {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.menu-categories button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-color);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-categories button.active,
.menu-categories button:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

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

.menu-item:hover {
    transform: translateY(-10px);
}

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

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

.menu-item-content h3 {
    font-family: var(--font-secondary);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.menu-item-content p {
    color: #777;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-item-content .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonial Section */
.testimonials {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial p {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info small {
    color: #999;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-detail {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form {
    flex: 1.2;
    min-width: 300px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: var(--font-primary);
}

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

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

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

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    max-width: 180px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: var(--font-primary);
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    width: 100%;
}

.newsletter-form button:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form Button */
.btn-contact {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-contact:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
    
    /* Hamburger Menu */
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 80px 0 30px 0;
        text-align: center;
    }
    
    /* Active state when menu is open */
    .main-nav.active {
        right: 0;
    }
    
    /* Hamburger menu transform to X */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
    
    .btn-nav {
        margin: 1.5rem auto;
        width: 80%;
        text-align: center;
        justify-content: center;
        border-radius: 3px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    /* Contact Container on Mobile */
    .contact-container {
        flex-direction: column;
    }
    
    /* Footer Columns on Mobile */
    .footer-container {
        flex-direction: column;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
} 