/* Base Styles and Reset */
:root {
    --primary-color: #f9a8d4;
    --secondary-color: #ec4899;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #495057;
    --border-color: #dee2e6;
    --hover-color: #e67dac;
    --accent-color: #e3859f;
    --accent-hover: #d65d80;
}

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

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

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

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

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-hover);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--accent-hover);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ================= Header Styles ================= */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Header Container Layout */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo Styling */
header .logo {
    text-align: center;
    flex: 0 0 auto; /* Prevents logo from shrinking */
    margin: 0 40px;
}

header .logo .logo-image {
    height: 50px;
    object-fit: cover;
    border-radius: 50%; /* Makes the image circular */
    border: 2px solid var(--accent-color); /* Optional: adds a border */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds subtle shadow */
}

/* Navigation Containers */
header .left-nav {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
}

header .right-nav {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
}

/* Navigation Lists */
header .left-nav ul,
header .right-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .left-nav li,
header .right-nav li {
    margin: 0 40px; /* Spacing between nav items */
}

/* Navigation Links */
header .left-nav a,
header .right-nav a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    font-size: 1.1rem; /* Slightly increased font size */
    transition: color 0.3s ease;
}

/* Navigation Link Underline Effect */
header .left-nav a::after,
header .right-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header .left-nav a:hover,
header .right-nav a:hover {
    color: var(--accent-color);
}

header .left-nav a:hover::after,
header .right-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

/* ================= Hero Section ================= */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/nails2klein.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    margin-top: 75px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ================= Services Section ================= */
.services {
    padding: 80px 0;
    background-color: #faf5f5;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* ================= Gallery Section ================= */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ================= About Section ================= */
.about {
    padding: 80px 0;
    background-color: #faf5f5;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================= Contact Section ================= */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin: 25px 0 15px;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-media {
    margin-top: 25px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-media a:hover {
    background-color: var(--accent-hover);
}

.contact-form {
    background-color: #faf5f5;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}




/* ================= Footer ================= */
footer {
    background-color: #222;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* ================= Price List Page ================= */
.prijslijst {
    padding: 120px 0 80px;
    background-color: #fff;
}

.price-list {
    margin-top: 30px;
}

.price-category {
    margin-bottom: 40px;
}

.price-category h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.price-table th {
    background-color: #f9f9f9;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--accent-color);
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.price-table td.price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-table td h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.price-table td p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.price-notes {
    background-color: #faf5f5;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-notes h3 {
    margin-bottom: 10px;
    color: #333;
}

.price-notes ul {
    padding-left: 20px;
}

.price-notes li {
    margin-bottom: 8px;
    color: #666;
}

/* Mobile responsiveness for price list */
@media (max-width: 768px) {
    .price-table th:nth-child(3),
    .price-table td:nth-child(3) {
        display: none; /* Hide duration column on mobile */
    }
    
    .price-table td h3 {
        font-size: 1rem;
    }
}
/* ================= Responsive Styles ================= */
@media screen and (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header .left-nav,
    header .right-nav {
        display: none;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    header .hamburger {
        display: block;
        position: absolute;
        right: 20px;
    }
    
    /* Show menu when active (add via JavaScript) */
    header.menu-active .left-nav,
    header.menu-active .right-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 100;
    }
    
    header.menu-active .left-nav ul,
    header.menu-active .right-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    header.menu-active .left-nav li,
    header.menu-active .right-nav li {
        margin: 10px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
/* Eenvoudige Hamburger Menu Styling */
.mobile-menu {
    display: none;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

/* Eenvoudige hamburger animatie */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    header .left-nav,
    header .right-nav {
        display: none;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }
}