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

:root {
    --primary-color: #fb7d96;
    --primary-dark: #fb7d96;
    --text-dark: #012241;
    --text-light: #012241;
    --bg-light: #e8abb3;
    --white: #fff6e5;
    --border-color: #e8abb3;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: 0.2px;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 8px 22px rgba(1, 34, 65, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 171, 179, 0.35);
    border-radius: 0 0 26px 26px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
}



.logo img {
    height: 100px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: lowercase;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 6px;
    right: 6px;
    height: 10px;
    background: linear-gradient(90deg, rgba(251, 125, 150, 0.25), rgba(232, 171, 179, 0.25));
    opacity: 0;
    transform: scaleX(0.7) skewX(-10deg);
    transition: var(--transition);
    border-radius: 999px 20px 999px 20px;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    opacity: 1;
    transform: scaleX(1) skewX(-10deg);
}

.nav-item--dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border: 1px solid rgba(232, 171, 179, 0.5);
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(1, 34, 65, 0.12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 10;
}

.nav-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0.04em;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: rgba(251, 125, 150, 0.12);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-links {
    display: none;
    gap: 15px;
}

.social-links a {
    color: var(--text-dark);
    opacity: 0.75;
    transition: var(--transition);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.nav-cta {
    display: none;
    padding: 12px 22px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 125, 150, 0.35);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
}

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

.nav-mobile ul {
    list-style: none;
    text-align: center;
}

.nav-mobile li {
    margin: 15px 0;
}

.nav-mobile a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    text-transform: lowercase;
    transition: var(--transition);
}

.nav-mobile a:hover {
    color: var(--primary-color);
}

.nav-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-dropdown-toggle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(1, 34, 65, 0.12);
    background: rgba(255, 246, 229, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dropdown-toggle span {
    width: 10px;
    height: 2px;
    background: var(--text-dark);
    display: block;
    transition: var(--transition);
}

.nav-dropdown-toggle span:last-child {
    transform: rotate(90deg);
}

.nav-item--dropdown.is-open .nav-dropdown-toggle span:last-child {
    transform: rotate(0deg);
}

.nav-dropdown--mobile {
    position: static;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding: 8px 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
}

.nav-dropdown--mobile a {
    padding: 6px 0;
}

.nav-item--dropdown.is-open .nav-dropdown--mobile {
    display: block;
}

.nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    padding: 12px 26px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(251, 125, 150, 0.35);
}

.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.social-links-mobile a {
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links-mobile a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 246, 229, 0.85) 0%, rgba(255, 246, 229, 0.55) 55%, rgba(232, 171, 179, 0.6) 100%),
        url("assets/img/home/hero-atelier.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h2 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(255, 246, 229, 0.6);
}

.hero-slogan {
    font-size: 14px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-author {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
    text-shadow: 0 2px 10px rgba(255, 246, 229, 0.6);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    text-transform: lowercase;
    transition: var(--transition);
}

.btn-primary {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

.btn-secondary {
    padding: 14px 36px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

/* Shared Sections */
.services {
    background:
        radial-gradient(circle at 14px 14px, rgba(1, 34, 65, 0.06) 1.5px, rgba(1, 34, 65, 0) 2.5px),
        var(--bg-light);
    background-size: 34px 34px, auto;
    padding: 80px 20px;
}

.section-label {
    text-align: center;
    font-size: 2em;
    color: var(--text-light);
    margin-bottom: 60px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: -40px auto 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.service-image {
    width: 100%;
    max-width: 31em;
    max-height: 41em;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-image img,
.gallery-image img,
.member-image img {
    filter: saturate(1.05);
}

.service-content {
    width: 100%;
    max-width: 600px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content h3 {
    font-size: 20px;
    margin: -6px 0 18px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-content p:last-of-type {
    margin-bottom: 0;
}

.service-content .service-cta {
    margin-top: 26px;
}

.service-cta {
    margin-top: 18px;
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.service-cta:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(1, 34, 65, 0.25);
}

.services .faq-list {
    margin: 26px 0;
    display: grid;
    gap: 14px;
}

.highlight-brand {
    color: var(--primary-color);
    position: relative;
}

.highlight-brand::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 8px;
    background: rgba(251, 125, 150, 0.2);
    z-index: -1;
    border-radius: 999px;
}

/* FAQ Items */
.faq-item {
    border-radius: 22px;
    border: 1px solid rgba(232, 171, 179, 0.6);
    background: var(--bg-light);
    box-shadow: 0 12px 28px rgba(1, 34, 65, 0.08);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.faq-item[open] {
    box-shadow: 0 18px 38px rgba(1, 34, 65, 0.12);
    transform: translateY(-2px);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 26px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(251, 125, 150, 0.12);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    content: '';
}

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 200ms ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:focus-visible {
    outline: 2px solid rgba(251, 125, 150, 0.6);
    outline-offset: 3px;
    border-radius: 14px;
}

.faq-content {
    padding: 12px 26px 22px;
    text-align: left;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    background: var(--white);
}

.faq-item[open] .faq-content {
    animation: fadeInUp 0.35s ease;
}

/* Contact */
.contact {
    background:
        radial-gradient(circle at 12px 12px, rgba(251, 125, 150, 0.1) 2px, rgba(251, 125, 150, 0) 3px),
        var(--white);
    background-size: 36px 36px, auto;
    padding: 80px 20px;
    text-align: center;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-items-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

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

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.schedule-box {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px 25px;
    width: 313px;
    margin: 0 auto;
    box-shadow: 0 10px 30px var(--bg-light);
}

.schedule-box p {
    color: var(--text-dark);
    font-size: 12px;
    margin: 6px 0;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 10px 10px, rgba(1, 34, 65, 0.06) 1.5px, rgba(1, 34, 65, 0) 2.5px),
        var(--white);
    background-size: 32px 32px, auto;
    color: var(--text-dark);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-badge {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-dark);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.featured,
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-slogan {
        font-size: 15px;
    }

    .service-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .service-item.reverse {
        flex-direction: row-reverse;
    }

    .service-image,
    .service-content {
        width: 48%;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .header {
        border-radius: 0 0 18px 18px;
    }

    .header-content {
        padding: 12px 0;
        gap: 12px;
    }

    .logo img {
        height: 42px;
    }

    .logo-slogan {
        font-size: 9px;
        letter-spacing: 0.25em;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-author {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 14px;
    }

    .service-content h2 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .contact-items-row {
        gap: 18px;
        margin-bottom: 30px;
    }

    .schedule-box {
        width: 100%;
        max-width: 320px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .social-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-mobile {
        display: none !important;
    }

    .hero-text h2 {
        font-size: 42px;
    }

    .service-content h2 {
        font-size: 36px;
    }
}
