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

:root {
    --primary-color: #1b2451;
    --secondary-color: #ff8dae;
    --text-color: #333;
    --bg-color: #fff;
    --bg-light: #f7f7f7;
    --border-color: #e0e0e0;
    --font-primary: 'Arimo', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Info Bar */
.info-bar {
    background: var(--bg-light);
    padding: 10px 0;
    display: none;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.info-item .icon {
    width: 18px;
    height: 18px;
    stroke: var(--text-color);
}

/* Header */
.header {
    background: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-list a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

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

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

.nav-list a.active {
    color: var(--secondary-color);
}

.nav-list a.active::after {
    width: 100%;
}

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

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

/* Banner */
.banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slider .slide.active {
    opacity: 1;
}

.banner-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.3);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 30px;
    height: 30px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

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

.section-title .highlight {
    color: var(--secondary-color);
}

/* About Us */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.button-group {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.btn:hover {
    background: #2a3568;
}

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

.about-images {
    display: flex;
    gap: 20px;
    position: relative;
}

.about-images .image-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-images .image-wrapper:first-child {
    transform: rotate(-5deg);
}

.about-images .image-wrapper:last-child {
    transform: rotate(5deg) translateY(30px);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

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

/* Services */
.services-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.services-image h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.services-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.separator {
    border: none;
    height: 1px;
    background: var(--secondary-color);
    margin: 40px 0;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

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

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-button.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.accordion-content.show {
    max-height: 1000px;
}

.accordion-content > * {
    padding: 0 20px 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    margin: 0 auto 20px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ */
.parallax-section {
    background-image: url('/images/0/2406522/makeup-2676392_1920.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.faq-content {
    position: relative;
    z-index: 1;
}

.faq-column {
    max-width: 600px;
}

.faq-column h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Opening Hours */
.opening-hours {
    background: var(--primary-color);
    color: white;
}

.opening-hours-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.clock-icon {
    width: 80px;
    height: 80px;
}

.clock-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.hours-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}

.hours-item strong {
    font-size: 1.1rem;
}

/* Footer/Contact */
.footer {
    background: var(--bg-light);
}

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

.footer-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-subtitle {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-item .icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-color);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-image {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.captcha-code {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: var(--primary-color);
}

.captcha-input {
    flex: 1;
    min-width: 150px;
}

.captcha-regenerate a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.form-message.success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.map-container {
    margin-top: 40px;
}

#map {
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.contact {
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 975px) {
    .info-bar {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav.open {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .about-content,
    .services-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        flex-direction: column;
    }

    .about-images .image-wrapper:last-child {
        transform: rotate(5deg);
    }

    .hours-list {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .banner {
        height: 70vh;
        min-height: 500px;
    }

    .social-icons {
        display: none;
    }

    .button-group {
        flex-direction: column;
    }

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