:root {
    --primary-color: #A2D2FF;
    --secondary-color: #FFC7F2;
    --background-color: #F0F8FF;
    --footer-bg-color: #8EC3B0;
    --button-color: #B19CD9;
    --section-bg-1: #E0F7FA;
    --section-bg-2: #F8F5E1;
    --section-bg-3: #FFEBF5;
    --section-bg-4: #DEF7DF;
    --section-bg-5: #DDF0F7;
    --section-bg-6: #F0F8F0;
    --text-color-dark: #333;
    --text-color-light: #555;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
    --border-radius-base: 0.75rem; /* Equivalent to rounded-xl */
    --shadow-base: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Equivalent to shadow-lg */
    --transition-base: all 0.3s ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color-light);
    background-color: var(--background-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--text-color-dark);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-base);
}

/* Custom Image Masks */
.mask-squircle {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0C77.61 0 100 22.39 100 50C100 77.61 77.61 100 50 100C22.39 100 0 77.61 0 50C0 22.39 22.39 0 50 0ZM50 10C27.38 10 10 27.38 10 50C10 72.62 27.38 90 50 90C72.62 90 90 72.62 90 50C90 27.38 72.62 10 50 10Z" fill="black"/></svg>');
    mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0C77.61 0 100 22.39 100 50C100 77.61 77.61 100 50 100C22.39 100 0 77.61 0 50C0 22.39 22.39 0 50 0ZM50 10C27.38 10 10 27.38 10 50C10 72.62 27.38 90 50 90C72.62 90 90 72.62 90 50C90 27.38 72.62 10 50 10Z" fill="black"/></svg>');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
}

.mask-heart {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5C2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5C2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-base);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-base);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--button-color);
    color: white;
    background-image: linear-gradient(135deg, var(--button-color) 0%, var(--primary-color) 100%);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 6px 10px -3px rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 6px 10px -3px rgba(0, 0, 0, 0.08);
    background-color: var(--primary-color);
    color: white;
}

/* Cards */
.card {
    background-color: rgba(255, 255, 255, 0.7); /* Glassmorphism base */
    border-radius: var(--border-radius-base);
    padding: 2rem;
    box-shadow: var(--shadow-base);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.15), 0 8px 12px -4px rgba(0, 0, 0, 0.08);
}

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section {
    padding: 5rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-base);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.section-1 { background-color: var(--section-bg-1); }
.section-2 { background-color: var(--section-bg-2); }
.section-3 { background-color: var(--section-bg-3); }
.section-4 { background-color: var(--section-bg-4); }
.section-5 { background-color: var(--section-bg-5); }
.section-6 { background-color: var(--section-bg-6); }

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color-dark);
}

.form-input,
.form-textarea,
.form-select {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color-dark);
    background-color: rgba(255, 255, 255, 0.5); /* Glassmorphism input */
    background-clip: padding-box;
    border: 1px solid rgba(var(--primary-color), 0.3);
    border-radius: var(--border-radius-base);
    transition: var(--transition-base);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    color: var(--text-color-dark);
    background-color: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top-left-radius: var(--border-radius-base);
    border-top-right-radius: var(--border-radius-base);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Alpine.js specific styles */
[x-cloak] {
    display: none !important;
}

/* Transitions for x-show/x-if */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease-in-out;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.slide-up-enter, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .card {
        padding: 1.5rem;
    }
}

/* Subtle background pattern for a natural feel */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="0.1" fill="%23e0f8ff" opacity="0.3"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Neumorphic-like subtle elevation on interactive elements */
.neumorphic-shadow {
    box-shadow: 5px 5px 10px rgba(162, 210, 255, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}
.neumorphic-shadow:hover {
    box-shadow: 2px 2px 5px rgba(162, 210, 255, 0.1), -2px -2px 5px rgba(255, 255, 255, 0.5);
    transform: translateY(1px);
}

/* Custom scrollbar for a polished look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}