/* 
   Hollanda Barber Shop - Professional Redesign
   Aesthetic: Monochromatic, High-End, Minimalist, Editorial
*/

:root {
    --bg-main: #000000;
    --bg-surface: #0a0a0a;
    --bg-elevated: #111111;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border-light: #222222;
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation timings */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-body {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

/* Buttons */
.btn-solid {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 0px; /* Sharp edges for high-end look */
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.btn-solid:hover {
    background-color: #dddddd;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 32px;
    border: 1px solid #ffffff;
    transition: all var(--transition-fast);
}

.btn-ghost:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-link {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
    transition: opacity var(--transition-fast);
}

.btn-link:hover {
    opacity: 0.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-text span {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-secondary);
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Subscription Section */
.subscription-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
}

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

.sub-text .section-body {
    margin: 30px 0;
}

.sub-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aesthetic-box span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--border-light);
    line-height: 1;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

.accordion-container {
    max-width: 900px;
    border-top: 1px solid var(--border-light);
}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.accordion-header:hover {
    color: var(--text-secondary);
}

.accordion-header .icon {
    font-weight: 300;
    font-size: 2rem;
    transition: transform var(--transition-slow);
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.service-list {
    list-style: none;
    padding-bottom: 30px;
}

.service-list li {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: baseline;
}

.service-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    font-family: var(--font-body);
}

.service-info .time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 10px;
}

.service-info .price {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.cta-wrapper {
    margin-top: 60px;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background-color: var(--bg-surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    text-align: left;
}

.avatar-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--bg-elevated);
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2); /* Black and white aesthetic */
    transition: transform var(--transition-slow);
}

.team-card:hover .avatar-wrap img {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    text-align: center;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.review-subtitle {
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.quote-card {
    background-color: var(--bg-surface);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.quote-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-card .author {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-light);
    padding: 80px 0 20px 0;
    background-color: var(--bg-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .logo-text {
    margin-bottom: 10px;
}

.brand-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: #ffffff;
    color: #000000;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #dddddd;
}

.footer-col .muted {
    color: var(--text-secondary);
}

.footer-col .small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    text-decoration: underline;
    color: var(--text-secondary);
}

.map-link:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Animations & Scroll Reveal */
.reveal-top {
    opacity: 0;
    transform: translateY(-20px);
}
.reveal-bottom {
    opacity: 0;
    transform: translateY(30px);
}
.reveal-fade {
    opacity: 0;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Media Queries */
@media (max-width: 900px) {
    .sub-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-solid, .btn-ghost {
        width: 100%;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 2.2rem;
    }
}
