/*
* Skizzers Hair Design - Main Stylesheet V1.1 (Modern Theme)
* Theme: White (#ffffff), Dark Slate Grey (#343a40), Black (#000000), Medium Grey (#6c757d)
* Fonts: Victorian Title (Custom), Cambria (Body)
* Author: Gemini (Adapted from Vivid Vibes & User Request)
* Version: 1.1
*/

/* =====================
    FONTS
===================== */
@font-face {
    font-family: 'VictorianTitle';
    src: url('../fonts/vic.otf'); /* Adjust path if needed */
    font-weight: normal;
    font-style: normal;
}

/* =====================
    GLOBAL STYLES & VARIABLES (NEW COLOR SCHEME)
===================== */
:root {
    --primary-bg: #ffffff; /* White */
    --secondary-bg: #343a40; /* Dark Slate Grey */
    --button-bg: #000000; /* Black */
    --button-hover-bg: #333333; /* Dark Grey for hover */
    --text-dark: #000000; /* Black */
    --text-light: #ffffff; /* White for contrast */
    --text-medium: #6c757d; /* Medium Grey */
    --stars-color: #777777; /* Grey for stars */
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.08); /* Shadow based on black */
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 25px;
    --transition-fast: all 0.2s ease-in-out;
    --transition-medium: all 0.4s ease-in-out;
    --transition-slow: all 0.8s ease;
    --font-primary: Cambria, Georgia, serif; /* Cambria with fallbacks */
    --font-title: 'VictorianTitle', serif; /* Custom Victorian font */
    --page-max-width: 850px; /* Max width for centered content */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-medium);
    background-color: var(--primary-bg); /* Body background is now white */
    overflow-x: hidden;
    line-height: 1.7;
}

/* Centered Page Wrapper with Shadow */
.page-wrapper {
    max-width: var(--page-max-width);
    margin: 0 auto;
    background-color: var(--primary-bg); /* Inner background white */
    box-shadow: 0 5px 25px var(--shadow-medium); /* Shadow on the wrapper */
    position: relative;
    overflow: hidden;
}


.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

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

a {
    text-decoration: none;
    color: var(--button-bg); /* Links are black */
    transition: var(--transition-fast);
}

a:hover {
    color: var(--button-hover-bg); /* Dark grey hover */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark); /* Black headings */
    font-weight: normal;
    margin-bottom: 1rem;
}

/* Section Headings using Victorian Font */
h2.section-heading {
    font-family: var(--font-title);
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark); /* Black */
    position: relative;
    padding-bottom: 0;
    font-weight: normal;
    line-height: 1.2;
}

h2.section-heading::after {
    content: none;
}

h3 { /* Sub-headings like "Meet Darnell", "Visit Us" etc. */
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--text-dark); /* Black */
    margin-bottom: 0.8rem;
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-medium); /* Medium grey */
}


.text-center {
    text-align: center;
}

/* =====================
    BUTTON STYLES
===================== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-medium);
    font-weight: 600;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

.book-btn {
    background-color: var(--button-bg); /* Black button */
    color: var(--text-light); /* White text */
    box-shadow: 0 4px 10px var(--shadow-light);

}

.book-btn:hover {
    background-color: var(--button-hover-bg); /* Dark grey hover */
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}

.btn-text { /* For "View All Reviews" */
    color: var(--button-bg); /* Black */
    font-weight: 600;
    display: inline-block;
    margin: 1.5rem 0 0.5rem;
    position: relative;
    padding-bottom: 3px;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
}


.btn-text:hover {
    color: var(--button-hover-bg); /* Dark grey */
    border-bottom-color: var(--button-hover-bg);
}

.directions-btn {
    background-color: var(--button-bg); /* Black */
    color: var(--text-light); /* White */
    margin-top: 1rem;
    box-shadow: 0 4px 10px var(--shadow-light);
}
.directions-btn i {
    margin-right: 8px;
}

.directions-btn:hover {
    background-color: var(--button-hover-bg); /* Dark grey */
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}


/* =====================
    HEADER & NAVIGATION
===================== */
.header {
    padding: 12px 0;
    background-color: var(--primary-bg); /* White header */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    max-width: var(--page-max-width);
    margin: 0 auto;
}


.header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    backdrop-filter: blur(5px);
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 20px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-dark); /* Black */
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--button-bg); /* Black underline */
    transition: width 0.3s ease;
}

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

.nav-icon {
    font-size: 1.5rem;
    color: var(--text-dark); /* Black */
    transition: var(--transition-fast);
}
.nav-icon:first-child { margin-right: 5px;}

.nav-icon:hover {
    color: var(--button-bg); /* Black */
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark); /* Black bars */
    margin: 5px 0;
    transition: var(--transition-medium);
    border-radius: 2px;
}
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg); /* White menu */
    box-shadow: 0 5px 10px var(--shadow-light);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Light black border */
}
.mobile-menu.active { display: block; }
.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark); /* Black */
    font-size: 1.1rem;
    font-weight: 600;
}
.mobile-nav-link:hover {
    background-color: rgba(0, 0, 0, 0.03); /* Very light grey hover */
    color: var(--button-bg); /* Black */
}
.mobile-menu .book-btn {
    margin: 15px auto 5px;
    display: inline-block;
    width: auto;
}

/* =====================
    LOGO BANNER
===================== */
.logo-banner {
    padding: 10px 0 20px;
    background-color: var(--primary-bg); /* White */
}
.logo-main {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 600px;
    height: auto;
}


/* =====================
    HERO SECTION (SWIPER)
===================== */
.hero {
    padding: 0;
    background-color: var(--primary-bg); /* White */
    position: relative;
}
.hero-container {
    position: relative;
}

.hero-swiper{
    box-shadow:0 0 15px rgba(0,0,0,0.35); /* Updated shadow */
}

.hero-swiper {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(var(--page-max-width) * 9 / 16);
    min-height: 300px;
    margin: 0 auto;
    position: relative;
}

.hero-swiper .swiper-slide {
    overflow: hidden;
    background-color: #eee;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pagination at the TOP */
.hero-swiper .swiper-pagination {
    position: absolute;
    top: 15px !important;
    bottom: auto !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display:none; /* Kept hidden as per original */
}

.hero-pagination .swiper-pagination-bullet {
    background-color: var(--text-dark); /* Black bullets for contrast on images */
    opacity: 0.6;
    width: 9px;
    height: 9px;
    transition: var(--transition-fast);
    margin: 0 5px !important;
}
.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--text-dark); /* Black */
    opacity: 1;
    transform: scale(1.1);
}


/* Plant Overlay CSS REMOVED */


/* =====================
    TAGLINE SECTION
===================== */
.tagline {
    padding: 10px 0 10px;
    background-color: var(--primary-bg); /* White */
    text-align: center;
    margin-top:1em;
}
.tagline-text {

    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--text-dark); /* Black */
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
    font-weight: normal;
}

/* =====================
    ABOUT SECTION
===================== */
.about {
    background-color: var(--primary-bg); /* White */
    padding: 50px 0;
    position: relative;
}
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.about-image {
    flex: 1 1 200px;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}
.darnell-img {
    width: 100%;
    height: auto;
}
.about-text {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 0 auto;
}
.about-text h3 {
    margin-bottom: 1rem;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-medium); /* Medium Grey */
}
.signature {
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark); /* Black */
    font-size: 1.1rem;
    text-align: right;
    margin-top: 1rem;
}
.signature a {
    font-weight: 600;
    color: var(--text-dark); /* Black */
}
.signature a:hover {
    color: var(--button-hover-bg); /* Dark Grey */
}

/* =====================
    REVIEWS SECTION
===================== */
.reviews {
    padding: 10px 0;
    background-color: var(--primary-bg); /* White */
}
.reviews-container {
    position: relative;
}
/* Separator image CSS RESTORED */
.separator-img {
    display: block;
    margin: -3rem auto 2.5rem; /* Adjust spacing as needed */
    max-width: 40rem; /* Control separator size */
    height: auto;
    opacity: 0.8; /* Keep original opacity or adjust */
}

.review-swiper {
    width: 100%;
    padding: 10px 0 50px;
    overflow: hidden;
}
.review-card {
    background-color: var(--white); /* White card */
    border-radius: var(--border-radius-medium);
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Light black border */
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}
.reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-bg); /* White border */
}
.reviewer-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark); /* Black */
}
.stars {
    color: var(--stars-color); /* Grey stars */
    margin-bottom: 15px;
    font-size: 1rem;
}
.review-text {
    color: var(--text-medium); /* Medium Grey */
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 0;
}
.review-pagination .swiper-pagination-bullet {
    background-color: var(--button-bg); /* Black bullets */
    opacity: 0.4;
    width: 9px;
    height: 9px;
}
.review-pagination .swiper-pagination-bullet-active {
    background-color: var(--button-bg); /* Black */
    opacity: 1;
}

/* =====================
    WAVY DIVIDER
===================== */
.wave-divider {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* transform: rotate(180deg); REMOVED rotation - Wave points down */
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.wave-fill {
    /* Fill with white so it looks like the top section cuts into the bottom */
    fill: var(--primary-bg);
}

/* =====================
    HOURS SECTION
===================== */
.hours {
    padding: 30px 0;
    background-color: var(--secondary-bg); /* Dark Slate Grey */
    color: var(--text-light); /* White text */
}
.hours .section-heading {
    color: var(--text-light); /* White title */
}
/* Style for mullet section (uses inline styles primarily) */
.hours div[style*='text-align:center'] h3 {
     font-family: var(--font-primary); /* Use body font */
     font-size: 1.2rem; /* Adjust size as needed */
     line-height: 1.5;
}

.hours-list {
    max-width: 400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.08); /* Subtle white bg */
    padding: 25px 30px;
    border-radius: var(--border-radius-medium);
    text-align: center;
}
.hours-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.hours-list li {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Light border */
    display: flex;
    justify-content: space-between;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list li span {
    font-weight: 600;
    margin-right: 10px;
}
.hours-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 1.5rem;
    color: var(--text-light); /* White */
}


/* =====================
    CONTACT SECTION
===================== */
.contact {
    padding: 10px 0;
    background-color: var(--secondary-bg); /* Dark Slate Grey */
    color: var(--text-light); /* White text */
}
.contact .section-heading {
    color: var(--text-light); /* White title */
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.contact-image {
    flex: 1 1 300px;
    max-width: 400px;
    margin: 0 auto;
}
.contact-image img {
    border-radius: var(--border-radius-medium);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Keep dark shadow */
}

.contact-info {
    flex: 1 1 350px;
    max-width: 450px;
     margin: 0 auto;
}
.contact-info h3 {
    color: var(--text-light); /* White */
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Light border */
    display: inline-block;
}
.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light); /* White */
}
.contact-info p i {
    margin-right: 12px;
    color: var(--text-light); /* White icons */
    opacity: 0.8;
    width: 20px;
    text-align: center;
}
.contact-info p a {
    color: var(--white); /* White links */
    font-weight: 600;
}
.contact-info p a:hover {
    text-decoration: underline;
    color: var(--white);
}

.contact-map {
    /* Full width */
}
.map-container {
    position: relative;
    padding-bottom: 65%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 8px 20px var(--shadow-medium); /* Updated shadow */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =====================
    FOOTER
===================== */
.footer {
    background-color: var(--secondary-bg); /* Dark Slate Grey */
    padding: 40px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Light border */
    color: var(--text-light); /* White text */
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;
    order: 0;
}
.footer-link {
    color: var(--text-light); /* White */
    opacity: 0.9;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.footer-link:hover {
    opacity: 1;
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    order: 1;
}
.social-link {
    font-size: 1.6rem;
    color: var(--text-light); /* White */
    opacity: 0.9;
}
.social-link:hover {
    opacity: 1;
    color: var(--white);
    transform: scale(1.1);
}
.copyright {
    text-align: center;
    color: var(--text-light); /* White */
    opacity: 0.7;
    font-size: 0.85rem;
    padding-top: 20px;
    margin-top: 0;
    border-top: none;
}
.copyright p {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    color: inherit;
}

/* =====================
    UTILITIES & ANIMATIONS
===================== */
.fade-in {
   opacity: 0;
   transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}


/* =====================
    RESPONSIVE STYLES
===================== */

@media (max-width: 900px) {
     :root {
         --page-max-width: 100%;
     }
     .page-wrapper {
         box-shadow: none;
     }
      .container {
         padding: 0 20px;
     }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .header {
         padding: 20px 0;
         position: relative; /* Mobile header not sticky */
     }
     .header.scrolled {
         padding: 20px 0;
         /* Match non-sticky header background */
         background-color: var(--primary-bg);
         backdrop-filter: none;
     }
    .navbar { position: relative; justify-content: center; }
    .nav-left, .nav-right { display: none; }
    .mobile-nav-toggle { display: block; }

    .logo-banner { padding: 0px 0 15px; }
    .logo-main { width: 80%; max-width: 400px; }

    .hero-swiper { min-height: 250px; }
    /* No plant overlay adjustment needed */

    h2.section-heading { font-size: 2.4rem; margin-bottom: 1rem;}
    h3 { font-size: 1.6rem; }
    .tagline-text { font-size: 1.8rem; }

    .about, .reviews, .hours, .contact { padding: 10px 0; }
    .about-content { flex-direction: column; text-align: center; gap: 25px; }
    .about-image { max-width: 250px; }
    .signature { text-align: center; }

    /* Separator might need size adjustment on mobile if desired */
    .separator-img { max-width: 90%; margin: -3rem auto 2.5rem; }
    .review-card { padding: 20px; }
    .review-swiper { padding-bottom: 40px; }

    .hours-list { max-width: 90%; padding: 20px; }

    .contact-columns { flex-direction: column; gap: 30px; margin-bottom: 30px; }
    .contact-image, .contact-info { max-width: 100%; text-align: center;}
    .contact-info h3 { display: block; border-bottom: none; padding-bottom: 0; margin-bottom: 1rem; }
    .contact-info p { text-align: left; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto; max-width: 300px}
    .contact-info p i { margin-right: 10px;}
    .directions-btn { margin: 1.5rem auto 0; display: inline-block; }

    .map-container { padding-bottom: 80%; }

    .footer-content { flex-direction: column; gap: 25px; text-align: center; padding-bottom: 20px; margin-bottom: 20px; }
    .footer-links { order: 1; gap: 20px; }
    .footer-social { order: 0; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 15px; }

    .logo-main { width: 90%; max-width: 300px; }
    .hero-swiper { min-height: 200px; }
    /* No plant overlay adjustment needed */

    h2.section-heading { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    .tagline-text { font-size: 1.5rem; }

    .about-image { max-width: 200px; }
    .reviewer-img { width: 45px; height: 45px; }
    .reviewer-name { font-size: 1rem; }
    .review-text { font-size: 0.9rem; }

    .hours-list li { font-size: 1rem; padding: 6px 0; }

    .contact-info p { font-size: 1rem;}
      .btn { padding: 9px 20px; font-size: 0.9rem; }
    .directions-btn { font-size: 0.9rem;}
}