@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette - Rose Gold & Pink */
    --primary: #db2777;
    --primary-hover: #be185d;
    --background: #fffafc;
    --foreground: #1f2937;
    --muted: #9ca3af;
    --light-bg: #fce7f3;
    --border: #e5e7eb;
    
    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(219, 39, 119, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 241, 242, 1) 100%);
    --gradient-btn: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}

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

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: #111;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* --- Global Components --- */

/* Highlight Text */
.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(219, 39, 119, 0.4);
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-secondary:hover {
    background: #fdf2f8;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-bg {
    background: var(--gradient-hero);
}

/* --- Animations --- */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0; /* Start hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Animation Delays */
.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.4s; }

/* Floating Bubble Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    background: var(--light-bg);
    top: -50px;
    left: -50px;
}

.bubble-2 {
    width: 200px;
    height: 200px;
    background: #fbcfe8;
    bottom: 50px;
    right: -50px;
    animation-delay: 1s;
}