/* Chikos - Premium Kids Clothing Store */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Bubblegum+Sans&display=swap');

:root {
    --primary: #FF6B6B;
    --primary-light: #FF8E8E;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --text-dark: #2F2F2F;
    --text-muted: #666666;
    --bg-light: #F7FFF7;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-bold: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

h1, .logo {
    font-family: 'Bubblegum Sans', cursive;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeIn 1s forwards; }

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2.5rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover { transform: scale(1.1) rotate(-3deg); }
.logo span { color: var(--secondary); }

.mobile-toggle {
    display: none;
    background: var(--bg-light);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--secondary);
    color: white;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0;
    height: 3px; background: var(--secondary);
    transition: var(--transition);
    border-radius: 3px;
}

nav a:hover { color: var(--secondary); }
nav a:hover::after { width: 100%; }

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), url('images/hero.png') center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-content {
    background: rgba(255,255,255,0.95);
    padding: 4rem;
    border-radius: 50px;
    box-shadow: var(--shadow-bold);
    max-width: 800px;
    text-align: center;
    border: 5px solid var(--accent);
    margin: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--accent);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
}

.btn-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

/* Sections */
section { padding: 6rem 10%; }

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
    color: var(--secondary);
    font-family: 'Bubblegum Sans', cursive;
    position: relative;
}

/* About Grid */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 4rem;
    box-shadow: var(--shadow-soft);
}

.about img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--accent);
    transition: var(--transition);
}

.about img:hover { transform: rotate(2deg); }

.about-text h2 { 
    color: var(--primary); 
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bubblegum Sans', cursive;
}

.about-text p { 
    margin-bottom: 1.5rem; 
    line-height: 1.8; 
    font-size: 1.15rem; 
    color: var(--text-muted);
}

/* Outfit Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.outfit-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
}

.outfit-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-bold);
}

.outfit-img-container {
    height: 350px;
    overflow: hidden;
}

.outfit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.outfit-card:hover img { transform: scale(1.1); }

.outfit-info { padding: 2rem; text-align: center; }
.outfit-info h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.outfit-price { color: var(--primary); font-weight: 800; font-size: 1.3rem; }

/* Coming Soon Banner */
.coming-soon {
    background: linear-gradient(135deg, var(--accent), #FFD93D);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 100px 30px 100px 30px;
    margin: 6rem 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.coming-soon h3 { 
    font-size: 3rem; 
    margin-bottom: 1.5rem; 
    font-family: 'Bubblegum Sans', cursive;
}

.coming-soon .discount-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    transform: rotate(-5deg);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow-bold);
    border: 2px solid var(--secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255,107,107,0.1);
    padding: 12px;
    border-radius: 50%;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
    height: 100%;
    min-height: 450px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 10% 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .about, .contact-container { grid-template-columns: 1fr; }
    .hero { height: auto; padding: 150px 0 100px; }
    section { padding: 4rem 5%; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: var(--shadow-bold);
    }
    
    nav.active { left: 0; }
    
    nav a {
        margin: 1.5rem 0;
        font-size: 1.5rem;
    }

    .hero-content { padding: 3rem 2rem; }
    .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .hero-content { padding: 2.5rem 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .about { padding: 2rem; }
    .section-title { font-size: 2rem; }
    .contact-card { padding: 2rem; }
}

