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

:root {
    --thistle: #dec9e9ff;
    --thistle-2: #dac3e8ff;
    --wisteria: #d2b7e5ff;
    --wisteria-2: #c19ee0ff;
    --bright-lavender: #b185dbff;
    --lavender-purple: #a06cd5ff;
    --lavender-purple-2: #9163cbff;
    --deep-lilac: #815ac0ff;
    --deep-lilac-2: #7251b5ff;
    --deep-lilac-3: #6247aaff;
    --white: #ffffff;
    --text-dark: #2d1b3d;
    --violet-dark: #4a1c5c;
    --violet-medium: #7b2cbf;
    --violet-light: #c77dff;
    --violet-pale: #e0aaff;
    
    /* Transition colors for smooth blending */
    --purple-white-1: #f0eaff;  /* Very light purple */
    --purple-white-2: #f5f2ff;  /* Almost white with purple tint */
    --purple-white-3: #faf8ff;  /* Barely purple white */
}

body {
    font-family: 'Garamond', serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Display texts with Cookie font */
h1, h2, h3, .logo, .nav-links a, .cta-button, .section-title, .service-card h3, .testimonial-author {
    font-family: 'Cookie', cursive;
}



.hero {
    background: linear-gradient(180deg, var(--lavender-purple) 0%, var(--wisteria) 30%, var(--thistle) 70%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.flower-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.flower {
    position: absolute;
    font-size: 4rem;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    color: var(--lavender-purple);
}

.flower-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.flower-2 {
    top: 20%;
    right: 8%;
    animation-delay: 3s;
}

.flower-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 6s;
}

.flower-4 {
    bottom: 25%;
    right: 6%;
    animation-delay: 9s;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--violet-dark);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--deep-lilac-3);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "✦";
    position: absolute;
    left: 10px;
    font-size: 1rem;
}

.cta-button::after {
    content: "✦";
    position: absolute;
    right: 10px;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(98, 71, 170, 0.4);
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(180deg, var(--lavender-purple) 0%, var(--wisteria) 30%, var(--thistle) 70%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
    max-width: none;
}

/* Services section with smooth gradient transition */
#services {
    background: linear-gradient(180deg, var(--purple-white-1) 0%, var(--purple-white-2) 50%, var(--white) 100%);
    transition: background 0.3s ease;
    margin: 0;
    max-width: none;
}

/* About section with subtle purple tint */
.about {
    background: linear-gradient(180deg, var(--purple-white-2) 0%, var(--purple-white-3) 50%, var(--white) 100%);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

/* Testimonials section with very subtle gradient */
.testimonials {
    background: linear-gradient(180deg, var(--purple-white-3) 0%, var(--white) 50%);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

/* Contact section with clean white background */
.contact {
    background: var(--white);
    text-align: center;
    margin: 0;
    max-width: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-lilac-3);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.section-title::before {
    content: "✦";
    position: absolute;
    left: 10px;
    font-size: 1.5rem;
    animation: sway 3s infinite ease-in-out;
}

.section-title::after {
    content: "✦";
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    animation: sway 3s infinite ease-in-out reverse;
}

@keyframes sway {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, var(--thistle), rgba(255, 255, 255, 0.8));
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid rgba(181, 131, 214, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card::before {
    content: "✦";
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
    color: var(--lavender-purple);
}

.service-card::after {
    content: "✦";
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-size: 2rem;
    opacity: 0.3;
    color: var(--lavender-purple);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--violet-dark);
    margin-bottom: 15px;
}

.about {
    background: var(--thistle-2);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--violet-dark);
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--violet-dark);
    border-left: 4px solid var(--violet-medium);
    padding-left: 20px;
    margin: 30px 0;
}

.testimonials {
    background: var(--thistle-2);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--lavender-purple);
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    background: transparent;
    display: inline;
    padding: 0;
}

.contact {
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--violet-dark);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--violet-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet-medium);
}

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

.submit-btn {
    background: var(--violet-dark);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
}



.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

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

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}