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

:root {
    /* Stained Glass Colors - Ocean Palette */
    --glass-1: #7eb8c9;
    --glass-2: #5a9fb8;
    --glass-3: #4a8ba8;
    --glass-4: #6bc4b8;
    --glass-5: #52b8a8;
    --glass-6: #a8d4d0;
    --glass-7: #8ec8c0;
    --glass-8: #78bcb4;
    --glass-9: #b8d8e8;
    --glass-10: #a0cce0;
    --base: #f5f7f8;
    --leading: rgba(40, 60, 70, 0.15);
    --ring: rgba(50, 70, 80, 0.08);

    /* Theme Colors - Light Disney Style */
    --bg-dark: #f8f9fa;
    --bg-panel: #ffffff;
    --bg-card: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-muted: #95a5a6;
    --accent: #6bc4b8;
    --accent-hover: #5ab0a4;
    --adoption-gold: #6bc4b8;

    /* Variables borrowed from KMS for footer styling */
    --primary-dark: #0d1f33;
    --accent-light: #e0b876;
    --transition: 0.3s ease;
    --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: transparent;
    color: var(--text-primary);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* Subtle noise texture for marble feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.03;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Photo backgrounds removed */

/* ========== CLOUD BACKGROUND ========== */
.bg-golden-rose {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../bg-clouds.jpg') center/cover no-repeat;
    overflow: hidden;
}

.bg-golden-rose svg,
.bg-golden-rose .shard {
    display: none;
}

.bg-golden-rose::after {
    display: none;
}

