/* ========== RESET AND BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lavender Background Family - Primary Background */
    --lavender-light: #D4C3ED;
    --lavender-pale: #D2C2EA;
    --lavender-soft: #D2C1EE;
    --lavender-pastel: #D2C1ED;
    --lavender-muted: #D2C1EB;
    --lavender-dusty: #D2C1E5;

    /* Pink/Magenta Flower Colors - Primary Accents */
    --plum-deep: #77417B;
    --fuchsia-muted: #9B4E86;
    --rose-pink: #B35B96;
    --floral-pink: #C86AA5;

    /* Purple/Violet Flower Colors - Secondary Accents */
    --violet-dusty: #968EB0;
    --lavender-purple: #B3A7CC;
    --periwinkle-pale: #C5B8DD;
    --grape-muted: #8F82AA;

    /* Yellow Accents - Highlight Colors */
    --golden-yellow: #E3C74A;
    --olive-gold: #C9A83A;

    /* Greenery Colors - Success/Health Elements */
    --leaf-green: #6F8F6A;
    --moss-green: #5F7E5C;
    --olive-deep: #4E6B4D;
    --sage-green: #8FA68C;

    /* Text Colors */
    --text-primary: #4B4F6B;
    --text-secondary: rgba(75, 79, 107, 0.8);
    --text-light: rgba(255, 255, 255, 0.9);

    /* Other */
    --white: #ffffff;
    --shadow: rgba(75, 79, 107, 0.1);
    --shadow-dark: rgba(75, 79, 107, 0.2);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--lavender-pale) 25%, var(--lavender-soft) 50%, var(--lavender-pastel) 75%, var(--lavender-dusty) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--plum-deep), var(--fuchsia-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    position: relative;
}

h2.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--golden-yellow), var(--leaf-green));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--floral-pink), var(--rose-pink), var(--fuchsia-muted));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(200, 106, 165, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    min-width: 44px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 106, 165, 0.4);
    background: linear-gradient(135deg, var(--fuchsia-muted), var(--plum-deep));
}

.btn:active {
    transform: translateY(-1px);
}

/* ========== UTILITY CLASSES ========== */
@supports (-webkit-touch-callout: none) {
    .hero { min-height: -webkit-fill-available; }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--golden-yellow);
    outline-offset: 2px;
}

html { overflow-y: scroll; scrollbar-gutter: stable; }

.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;
}