/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* Easter CSS Variables */
:root {
    --primary-color: #fca5a5;
    /* Soft vibrant pink */
    --primary-light: #fecdd3;
    --primary-dark: #f87171;

    --secondary-color: #6ee7b7;
    /* Bright mint green */
    --secondary-hover: #34d399;

    --accent-blue: #93c5fd;
    /* Soft baby blue */
    --accent-yellow: #fde047;
    /* Bright sun yellow */

    --text-dark: #1f2937;
    --text-light: #ffffff;
    --text-muted: #6b7280;

    --bg-light: #fff5f5;
    /* Very subtle pink tint for bg */
    --bg-white: #ffffff;
    --bg-pastel: #f0fdf4;
    /* Very subtle mint tint for bg */

    --border-color: #f3f4f6;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Initial Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-large {
    font-size: 1.25rem;
}

.text-muted {
    color: var(--text-muted);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-pastel {
    background-color: var(--bg-pastel);
}

.accent-color {
    color: var(--primary-color);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-hover);
    margin-bottom: 1rem;
    padding: 4px 12px;
    border-radius: 50px;
    background-color: rgba(110, 231, 183, 0.1);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(252, 165, 165, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 165, 165, 0.5);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.link-arrow:hover {
    padding-left: 8px;
    color: var(--primary-dark);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pink {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.badge-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.shape-yellow {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: var(--accent-yellow);
}

.shape-pink {
    top: 40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: var(--primary-light);
}

.shape-blue {
    bottom: -20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background-color: var(--accent-blue);
    opacity: 0.3;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 16px;
    position: relative;
}

.decorative-card {
    transform: rotate(3deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.decorative-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Product Section Grids */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.two-col-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect ratio */
    overflow: hidden;
    background-color: #fafafa;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}

.buddy-card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.buddy-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
    border: none;
}

.buddy-card .product-img-wrapper {
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.buddy-card:hover .product-img-wrapper {
    box-shadow: var(--shadow-lg);
}

/* Feature Layouts */
.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.align-items-center {
    align-items: center;
}

.reverse-layout .feature-text {
    order: -1;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: cover;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background-color: var(--bg-pastel);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(110, 231, 183, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 40px;
}

.footer-logo h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .hero-container,
    .feature-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p,
    .feature-text p,
    .check-list {
        margin-left: auto;
        margin-right: auto;
    }

    .check-list {
        text-align: left;
        max-width: fit-content;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reverse-layout .feature-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .product-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
}