/* ===================================
   BARBERSHOP AMERSFOORT - STYLESHEET
   =================================== */

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

:root {
    --gold: #c8a656;
    --gold-light: #e8d5a3;
    --dark: #1a1a1a;
    --darker: #111111;
    --dark-card: #222222;
    --dark-border: #333333;
    --white: #f5f5f5;
    --text-light: #cccccc;
    --text-muted: #999999;
    --red: #c0392b;
    --green: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--darker);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
}

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

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
}

.nav-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.scissors {
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Language Toggle --- */
.lang-toggle {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.lang-toggle:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.85), rgba(26,26,26,0.9)),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(200,166,86,0.03) 10px,
            rgba(200,166,86,0.03) 20px
        );
    overflow: hidden;
}

.hero::before {
    content: '✂';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    color: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200,166,86,0.3);
}

.btn-call {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-call:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* --- SECTIONS BASE --- */
section {
    padding: 80px 40px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 50px;
}

/* --- SERVICES --- */
.services {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-price {
    color: var(--gold) !important;
    font-size: 1.4rem !important;
    font-weight: 700;
    margin-top: 12px;
}

.deposit-info {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    min-height: 1.4em;
}

/* --- GALLERY --- */
.gallery {
    background: var(--darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-warm img {
    filter: sepia(0.15) saturate(1.2) brightness(0.95);
}


.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-card);
    border: 2px dashed var(--dark-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color 0.3s;
}

.photo-placeholder:hover {
    border-color: var(--gold);
}

.photo-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.photo-placeholder p {
    font-size: 0.9rem;
}

.gallery-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* --- OPENING HOURS --- */
.hours {
    background: var(--dark);
}

.hours-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 30px;
    border-bottom: 1px solid var(--dark-border);
    transition: background 0.3s;
}

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

.hours-row:hover {
    background: rgba(200,166,86,0.05);
}

.hours-row .day {
    font-weight: 500;
    color: var(--white);
}

.hours-row .time {
    color: var(--text-light);
}

.hours-row.highlight {
    background: rgba(200,166,86,0.1);
    border-left: 3px solid var(--gold);
}

.hours-row.highlight .day,
.hours-row.highlight .time {
    color: var(--gold);
    font-weight: 700;
}

.hours-row.closed .time {
    color: var(--red);
    font-weight: 500;
}

/* --- APPOINTMENT FORM --- */
.appointment {
    background: var(--darker);
}

.appointment-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: var(--dark-card);
    color: var(--white);
}

/* --- CONTACT --- */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-icon {
    font-size: 1.8rem;
    margin-top: 2px;
}

.contact-item h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.phone-link {
    color: var(--gold) !important;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--gold-light) !important;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: var(--dark-card);
    border: 2px dashed var(--dark-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 0.8rem;
    margin-top: 5px;
}

/* --- FLOATING CALL BUTTON --- */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(200,166,86,0.4);
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(200,166,86,0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(200,166,86,0.4); }
    50% { box-shadow: 0 5px 30px rgba(200,166,86,0.7); }
    100% { box-shadow: 0 5px 20px rgba(200,166,86,0.4); }
}

/* --- FOOTER --- */
.footer {
    background: var(--darker);
    border-top: 1px solid var(--dark-border);
    padding: 30px 40px;
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- PAYMENT STEP --- */
.payment-step {
    max-width: 500px;
    margin: 0 auto;
}

.payment-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.payment-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.payment-summary {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.payment-amount {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Playfair Display', Georgia, serif;
}

#paypal-button-container {
    margin-bottom: 20px;
}

.btn-back {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--dark-border);
    padding: 10px 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-back:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* --- SUCCESS MESSAGE --- */
.success-message {
    background: var(--dark-card);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.success-message .checkmark {
    font-size: 4rem;
    margin-bottom: 15px;
}

.success-message h3 {
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--dark-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 1.8rem;
    }

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

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

    .floating-call {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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