/* Reset and Base Styles */
:root {
    --primary-color: #EEE4E1;
    --secondary-color: #E7D8C9;
    --tertiary-color: #E6BEAE;
    --accent-color: #B2967D;
    --text-color: #2c1810;
    --white: #ffffff;
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--tertiary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--text-color);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(238, 228, 225, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav-links {
    display: none;
    list-style: none;
}

.nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    text-align: center;
}

.nav-links.open li {
    margin: 0.5rem 0;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: var(--transition);
}

/* Active state for hamburger */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(238, 228, 225, 0.5), rgba(231, 216, 201, 0.55));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--primary-color);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tertiary-color);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.reviewer {
    font-weight: 600;
    color: var(--accent-color);
}

/* About Section */
.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    background-color: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--secondary-color);
}

.faq-question:hover:not(.active) {
    background-color: rgba(231, 216, 201, 0.5);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    overflow: visible;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Contact Section */
.contact h2 {
    margin-bottom: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 0;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.contact-info {
    margin-top: 0;
    background-color: var(--primary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-info p:last-of-type {
    margin-bottom: 2rem;
}

.contact-info .phone-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info .phone-link:hover {
    color: var(--text-color);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: none;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* Map Section */
.map iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Exit Intent Form */
.exit-intent-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-intent-form.visible {
    opacity: 1;
    visibility: visible;
}

.exit-intent-form form {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.exit-intent-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.exit-intent-form p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.exit-intent-form input[type="tel"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.exit-intent-form input[type="tel"]:focus {
    border-color: var(--accent-color);
    outline: none;
}

.exit-intent-form .btn-primary {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.close-form {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.5;
    transition: var(--transition);
}

.close-form:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 98px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-info {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info p:last-of-type {
    margin-bottom: 0;
}

.evolve-credit {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
}

.evolve-credit a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.evolve-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-info {
        text-align: left;
    }

    .evolve-credit {
        margin-top: 0;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-links li {
        margin: 0 1rem;
    }

    .nav-links.open {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .footer-content {
        grid-template-columns: auto 1fr;
        text-align: left;
        align-items: center;
    }

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

    .about-image {
        margin: 0;
    }

    .about-text {
        margin: 0;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Creations Section */
.creations-content p:first-of-type {
    margin-bottom: 2.5rem;
}

.creations-content h3 {
    margin-top: 2rem;
} 