/* =========================================
   SUGGUGUGGU - GLOBAL STYLES (global.css)
   ========================================= */

/* --- Premium Modern Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Global Variables (Instagram / Lovely Pink Aesthetic) --- */
:root {
    --bg-main: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #737373;
    
    /* Premium Gradients */
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --purple-gradient: linear-gradient(135deg, #8a2be2 0%, #bc1888 100%);
    --pink-soft: rgba(220, 39, 67, 0.1);
    --purple-soft: rgba(138, 43, 226, 0.1);
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Premium Background Orbs --- */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #FAFAFA;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
}

.orb-1 { width: 400px; height: 400px; background: #ffbc00; top: -10%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: #ff0055; top: 20%; right: -10%; animation-delay: -2s; }
.orb-3 { width: 300px; height: 300px; background: #8a2be2; bottom: -10%; left: 30%; animation-delay: -4s; }

/* --- Glassmorphism Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1002;
}

/* Navigation Menu */
.nav-menu { display: flex; align-items: center; }
.nav-menu ul { list-style: none; display: flex; gap: 30px; align-items: center; }

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Special Link Stylings in Nav */
.store-link {
    background: var(--pink-soft);
    padding: 8px 16px;
    border-radius: 20px;
    color: #cc2366 !important;
}
.store-link:hover { background: rgba(220, 39, 67, 0.2); }

.nav-btn {
    background: var(--ig-gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    -webkit-text-fill-color: white !important;
}

/* Hamburger Icon for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}


/* =========================================================
   MISSING GLOBAL COMPONENTS ADDED HERE! 
   (Buttons, Badges, and Sections)
   ========================================================= */

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--pink-soft);
    color: #cc2366;
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: var(--ig-gradient);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.btn-secondary:hover {
    border-color: rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.section {
    padding: 80px 5vw;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    max-width: 500px;
    margin: 0 auto;
}


/* --- Footer --- */
footer {
    background: #ffffff;
    padding: 60px 5vw;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover { color: #cc2366; }
.copyright { color: #a3a3a3; font-size: 0.85rem; }

/* --- Utilities & Animations --- */
.hidden { display: none !important; }

@keyframes fadeUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE RESPONSIVENESS for Navbar --- */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-menu.active { top: 0; }
    .nav-menu ul { flex-direction: column; gap: 25px; }
    .nav-menu ul li a { font-size: 1.3rem; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}