/* 
   Tammy's Hairstyle - Main Stylesheet
   Kleurenschema:
   - Primaire kleur: #f8f4f1 (Lichte crème/beige tint voor achtergrond)
   - Secundaire kleur: #d4b8a5 (Zachte taupe/beige voor accenten)
   - Tekstkleur: #4a4a4a (Donkergrijs voor hoofdtekst)
   - Accentkleur: #a67c52 (Warme bruintint voor knoppen en highlights)
   - Witte ruimtes: #ffffff (Wit voor contrast en luchtigheid)
*/

/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #a67c52;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d4b8a5;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header en navigatie */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #a67c52;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #4a4a4a;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a67c52;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #a67c52;
    cursor: pointer;
}

/* Hero sectie */
.hero {
    background-color: #f8f4f1;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #a67c52;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #8e6a45;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

/* Over Ons sectie */
.about {
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founding-date {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #a67c52;
    margin-bottom: 20px;
}

/* Openingstijden sectie */
.opening-hours {
    background-color: #f8f4f1;
}

.hours-container {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0e9e4;
}

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

.day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.time {
    color: #a67c52;
}

/* Contact sectie */
.contact {
    background-color: #ffffff;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #a67c52;
    width: 40px;
    height: 40px;
    background-color: #f8f4f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #f8f4f1;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* WordPress specifieke stijlen */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.entry-content {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.widget-area {
    padding: 20px;
    background-color: #f8f4f1;
    border-radius: 10px;
}

/* Responsive design */
@media screen and (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        margin: 10px 0;
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
    
    .day {
        margin-bottom: 5px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
}
