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

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fc84b4;
    color: white;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.4em;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 60px);
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    animation: heroFadeIn 1.2s ease both;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display SC', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #fc84b4;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn:hover {
    background: #f96ba8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(252, 132, 180, 0.4);
}

.section {
    padding: 4rem 2rem;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fc84b4;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.horizontal-divider {
    height: 6px;
    background: #fc84b4;
    margin: 3rem auto;
    border: none;
}

.horizontal-divider.width-30 {
    width: 30%;
}

.horizontal-divider.width-80 {
    width: 80%;
}

.horizontal-divider.width-100 {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #fc84b4;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #fc84b4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #fde9f3;
}

.service-card li:last-child {
    border-bottom: none;
}

.about {
    background: #fef7fa;
}

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

.about-text h2 {
    color: #fc84b4;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

.contact-info {
    background: #fc84b4;
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(252, 132, 180, 0.3);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details p {
    font-size: 1.1rem;
}

footer {
    background: #fc84b4;
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

footer a {
    color: white;
    text-decoration: none;
}

.cta-section {
    background: #fef7fa;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    color: #fc84b4;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.hero.services-hero {
    height: 40vh;
}

/* Products Page Panels */
.products-panel {
    height: 1000px;
    border-top: none !important;
    box-shadow: none !important;
}

.products-panel:hover {
    transform: none !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.products-panel > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Webflow Grid System */
.w-row:before,
.w-row:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}

.w-row:after {
    clear: both;
}

.w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.w-col-6 {
    width: 50%;
}

.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}

/* Hair Products Logo Grid */
.container-3 {
    padding-left: 30px;
    padding-right: 30px;
}

.column-18 {
    padding-left: 0;
}

.div-block-51 {
    margin-left: 30px;
    margin-right: 30px;
}

.row-4 {
    margin-bottom: 30px;
}

.column-2 {
    padding-right: 20px;
}

.column-3 {
    padding-left: 15px;
    padding-right: 20px;
}

.image-6,
.image-7 {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    display: block;
}

.image-5 {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    height: auto;
}

.container-3 .w-row {
    margin-bottom: 20px;
}

.container-3 .w-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}


.container-3 .w-col a {
    display: block;
}

/* Nail Products Logo Grid */
.container-4 {
    padding-left: 30px;
    padding-right: 30px;
}

.div-block-20 {
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 20px;
}

.row-5 {
    margin-bottom: 30px;
}

.column-4 {
    padding-right: 20px;
}

.column-5 {
    padding-left: 20px;
}

.column-6 {
    padding-right: 20px;
}

.column-7 {
    padding-left: 20px;
}

.container-4 .w-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}


.container-4 .w-col a {
    display: block;
}

.container-4 .div-block-51 img {
    margin-bottom: 20px;
}

.container-4 .div-block-51 img:last-child {
    margin-bottom: 0;
}

/* Salon Products Logo Grid */
.container-5 {
    padding-left: 30px;
    padding-right: 30px;
}

.row-6 {
    margin-bottom: 30px;
}

.container-5 .w-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}


.container-5 .w-col a {
    display: block;
}

.container-5 > a {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

.container-5 > a img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}



/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== TABLET (≤900px) ===== */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fc84b4;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0.5rem 0 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a {
        display: block;
        padding: 0.85rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .nav-links li:last-child a { border-bottom: none; }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .about-content { grid-template-columns: 1fr; }
    .w-col-6 { width: 100%; }
    .container-3 { padding-left: 15px; padding-right: 15px; }

    /* Awards row — allow wrapping */
    .award-row {
        flex-wrap: wrap !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
    .award-wrap img { height: 80px !important; }
    .award-wrap { padding: 7px !important; }

/* About panel: full width */
    .about-panel { justify-content: center !important; padding: 3rem 1.5rem !important; }
    .about-panel > div { width: 100% !important; max-width: 600px !important; }

    /* Contact section grid → stack */
    .contact-grid { grid-template-columns: 1fr !important; }
    .contact-grid > div:first-child iframe { min-height: 280px !important; }

    /* Products panel auto-height */
    .products-panel { height: auto !important; min-height: 600px !important; }
    .div-block-20 { width: 100% !important; max-width: 380px !important; }

    /* Services page large decorative headings */
    .svc-h-title { font-size: 3.5rem !important; letter-spacing: 6px !important; }
    .svc-h-sub   { font-size: 2.5rem !important; letter-spacing: 6px !important; margin-top: -20px !important; }
    /* Service items grid inside each section */
    .svc-items-grid { grid-template-columns: 1fr !important; }

    /* General section padding */
    .section { padding: 2.5rem 1.2rem !important; }

    /* Gallery tab buttons */
    .gallery-tab { font-size: 0.85rem !important; padding: 0.6rem 1rem !important; }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    .award-wrap img { height: 60px !important; }
    .award-wrap { padding: 5px !important; border-radius: 12px !important; }
    .svc-h-title { font-size: 2.5rem !important; }
    .svc-h-sub   { font-size: 2rem !important; margin-top: -14px !important; }
}

/* ===== RESPONSIVE VIDEO ===== */
@media (max-width: 768px) {
    #hero-video { width: 480px !important; height: 270px !important; }
}
@media (max-width: 540px) {
    #hero-video { width: 320px !important; height: 180px !important; }
}

/* ===== HOME PAGE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    /* Hero: center text, fix padding, shrink title */
    .hero { padding: 2rem 1.5rem !important; justify-content: center !important; }
    .hero-text-block { width: 90% !important; }
    .hero-title { font-size: 3.5rem !important; }

    /* Awards section: stack vertically, fix iOS fixed bg */
    .awards-section {
        flex-direction: column !important;
        background-attachment: scroll !important;
        padding: 2.5rem 1.5rem !important;
        gap: 2rem !important;
        align-items: center !important;
    }

    /* About panel: fix iOS fixed background */
    .about-panel { background-attachment: scroll !important; }

    /* 2025 award image section: fix iOS fixed background */
    .award-img-section { background-attachment: scroll !important; min-height: 35vh !important; }

    /* Testimonials: allow height to grow, fix padding */
    #testimonial-carousel {
        height: auto !important;
        overflow: visible !important;
        padding: 1.5rem 1rem !important;
    }
    #testimonial-carousel .testimonial-item p:last-child { font-size: 1.3rem !important; }
    .testimonials-section > h2 { font-size: 2rem !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem !important; }
}

/* ===== ACCESSIBILITY / SEO UTILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
