/* Made by Maddie Studio - Style That Shines */

/* CSS Variables */
:root {
    --pink-light: #FFB6C1;
    --pink-main: #FF69B4;
    --pink-dark: #DB7093;
    --purple-light: #DDA0DD;
    --purple-main: #BA55D3;
    --purple-dark: #9932CC;
    --white: #FFFFFF;
    --off-white: #FFF9FB;
    --text-dark: #4A3347;
    --gradient-main: linear-gradient(135deg, var(--pink-main) 0%, var(--purple-main) 100%);
    --gradient-soft: linear-gradient(135deg, var(--pink-light) 0%, var(--purple-light) 100%);
    --shadow-soft: 0 4px 20px rgba(219, 112, 147, 0.3);
    --shadow-hover: 0 8px 30px rgba(186, 85, 211, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sparkles Animation */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    top: -20px;
    font-size: 1.2rem;
    animation: fall linear forwards;
    color: var(--pink-main);
    text-shadow: 0 0 10px var(--pink-light);
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

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

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-soft);
    padding-bottom: 60px;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
    border-bottom: 4px solid var(--pink-main);
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px;
}

.hero-content {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(186, 85, 211, 0.4));
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: multiply;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--purple-dark);
    margin-top: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Section Headings */
h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--purple-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: var(--gradient-soft);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 15px;
}

.greeting {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--pink-main);
    margin-bottom: 20px !important;
}

.signature {
    font-style: italic;
    color: var(--purple-main);
    margin-top: 25px !important;
    padding-top: 15px;
    border-top: 2px dashed var(--pink-light);
}

/* Featured Product Section */
.featured {
    padding: 80px 0;
    background: var(--gradient-soft);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 5px;
}

.thumbnail:hover {
    border-color: var(--pink-main);
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: var(--purple-main);
    box-shadow: 0 4px 15px rgba(186, 85, 211, 0.4);
}

.product-info {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
}

.product-badge {
    display: inline-block;
    background: var(--gradient-main);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.series {
    color: var(--purple-main);
    font-weight: 500;
    margin-bottom: 25px;
}

.product-highlights {
    background: var(--off-white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.highlight:not(:last-child) {
    border-bottom: 1px solid var(--pink-light);
}

.highlight-icon {
    font-size: 1.3rem;
}

.product-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.button-sparkle {
    animation: twinkle 1s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--gradient-main);
    padding: 50px 0 30px;
    text-align: center;
    color: var(--white);
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-tagline {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 30px 15px;
    }

    .logo {
        max-width: 200px;
    }

    .tagline {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .greeting {
        font-size: 1.6rem;
    }

    .about, .featured, .cta-section {
        padding: 50px 0;
    }

    .product-info {
        padding: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.05rem;
    }

    .thumbnail-row {
        gap: 8px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .sparkles {
        display: none;
    }

    .logo {
        animation: none;
    }

    .button-sparkle {
        animation: none;
    }

    * {
        transition: none !important;
    }
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 3px solid var(--purple-main);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .sparkles {
        display: none;
    }

    .hero-banner {
        max-height: none;
    }

    .cta-button {
        color: var(--text-dark);
        border: 2px solid var(--text-dark);
    }
}
