@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Great+Vibes&display=swap');

:root {
    /* Premium Pastel Rainbow Palette */
    --primary-pink: #FFB7B2;
    --primary-blue: #A2E1DB;
    --primary-yellow: #FFF4BD;
    --primary-purple: #E2C6FF;
    --primary-green: #C6EBC5;
    
    /* Accents */
    --accent-gold: #D4AF37;
    --text-dark: #4A403A;
    --text-light: #8C8C8C;
    --bg-cream: #FFFDF9;
    --white: #FFFFFF;

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.12);
    --gradient-rainbow: linear-gradient(135deg, var(--primary-pink), var(--primary-yellow), var(--primary-blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.script-font {
    font-family: 'Great Vibes', cursive;
    color: var(--accent-gold);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rainbow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Offset fixed header */
    background: radial-gradient(circle at top right, var(--primary-pink) 0%, transparent 40%),
                radial-gradient(circle at bottom left, var(--primary-blue) 0%, transparent 40%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--text-dark), #6b5b54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-rainbow);
    color: white; /* Trying white text for contrast on rainbow */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAwIDIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjRkZGNkU1IiBkPSJNMzkuNSwtNDguNEM1MC4zLC0zNy43LDU4LjEsLTI2LjQsNjIuNywtMTMuNEM2Ny4zLC0wLjQsNjguNywxNC40LDYzLjIsMjguMUM1Ny43LDQxLjgsNDUuMyw1NC40LDMxLjEsNjEuNkMxNi45LDY4LjksMC45LDcwLjgsLTEzLjYsNjYuMUMtMjguMSw2MS41LC00MS4xLDUwLjIsLTUwLjYsMzYuOUMtNjAuMSwyMy42LC02Ni4xLDguMywtNjMuNywtNi4yQy02MS4zLC0yMC43LC01MC41LC0zNC40LC0zOC4yLC00NC45Qy0yNS45LC01NS40LC0xMi4xLC02Mi43LDAuMywtNjMuMUMxMi42LC02My40LDI1LjIsLTU2LjgsMzkuNSwtNDguNFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwMCAxMDApIiAvPjwvc3ZnPg==') no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 0.6;
}

.hero-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--primary-pink);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--gradient-rainbow);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery / Products */
.products {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 300px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact / Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--primary-pink) 100%);
    padding: 6rem 0 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) rotate(10deg);
    color: var(--primary-pink);
    box-shadow: var(--shadow-hover);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Utils */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide by default on mobile, can add JS toggle if needed later */
        /* Simplified for this version to just rely on floaters or simple stack */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-img-placeholder {
        height: 300px;
    }
}
