/* 
Dokumentasi CSS untuk Kyuflorist

Palet Warna:
- Soft Pink: #FFE6EF (Latar belakang lembut)
- Pink Accent: #FF8FAB (Aksen utama, tombol)
- Pink Dark: #FB6F92 (Gradien tombol)
- Ocean Blue: #B8E1FF (Latar belakang gradien)
- Blue Accent: #5DA9E9 (Aksen sekunder)
- Blue Dark: #3A7FC4 (Gradien tombol sekunder)
- Tea Green: #D4F1E0 (Latar belakang footer)
- Green Accent: #7BCBA4 (Aksen info card)
- Green Dark: #5AA786 (Aksen info card)
- Text Dark: #2C3E50 (Teks utama)
- Text Medium: #5A6B7D (Teks sekunder, link navigasi)
- Text Light: #8A9BAD (Teks petunjuk)
- BG Light: #FEFBF6 (Latar belakang utama body)
- BG Offwhite: #FFF9F2 (Latar belakang alternatif)

Font:
- Inter: Font utama untuk teks umum.
- Playfair Display: Font display untuk judul utama.

Struktur:
1.  **Root & Body**: Pengaturan variabel warna global dan gaya dasar body.
2.  **Header**: Gaya untuk header, termasuk efek blur saat scroll.
3.  **Navigasi**: Efek hover dan garis bawah pada link navigasi.
4.  **Tombol**: Gaya untuk tombol utama (pink) dan sekunder (biru) dengan gradien dan efek hover.
5.  **Hero Section**: Latar belakang gradien dengan pola SVG.
6.  **Info Cards**: Kartu informasi dengan bayangan, efek hover, dan garis aksen warna.
7.  **Instagram Card**: Kartu khusus dengan gradien Instagram.
8.  **Product Grid**: Gaya untuk grid produk e-commerce.
9.  **Floating Animation**: Animasi mengambang untuk elemen dekoratif.
10. **Footer**: Latar belakang gradien dengan bentuk gelombang SVG.
11. **Modal**: Jendela pop-up untuk detail produk.
12. **Responsive**: Penyesuaian layout untuk layar mobile (di bawah 768px).
*/

:root {
    /* Color Palette */
    --soft-pink: #FFE6EF;
    --pink-accent: #FF8FAB;
    --pink-dark: #FB6F92;
    
    --ocean-blue: #B8E1FF;
    --blue-accent: #5DA9E9;
    --blue-dark: #3A7FC4;
    
    --tea-green: #D4F1E0;
    --green-accent: #7BCBA4;
    --green-dark: #5AA786;
    
    --text-dark: #2C3E50;
    --text-medium: #5A6B7D;
    --text-light: #8A9BAD;
    
    --bg-light: #FEFBF6;
    --bg-offwhite: #FFF9F2;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.nav-link {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--pink-accent) 0%, var(--pink-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 111, 146, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 111, 146, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(93, 169, 233, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 169, 233, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--ocean-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C3E50' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.info-card.clock::before {
    background: linear-gradient(90deg, var(--green-accent), var(--blue-accent));
}

.info-card.truck::before {
    background: linear-gradient(90deg, var(--blue-accent), var(--pink-accent));
}

.info-card.phone::before {
    background: linear-gradient(90deg, var(--pink-accent), var(--green-accent));
}

/* Instagram Card */
.instagram-card {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.2);
}

.instagram-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.3);
}

/* Product Grid */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal.hidden {
    display: none;
}

.modal {
    transition: background-color 0.3s ease;
}

.modal-content {
    transition: transform 0.3s ease;
}

#close-modal {
    transition: transform 0.3s ease, color 0.3s ease;
}

#close-modal:hover {
    transform: rotate(90deg);
    color: var(--pink-dark);
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--tea-green) 0%, var(--ocean-blue) 100%);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FEFBF6' fill-opacity='1' d='M0,96L48,90C96,85,192,75,288,75C384,75,480,85,576,96C672,107,768,117,864,117.3C960,117,1056,107,1152,96C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-link {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}