/* ========================= */
/* GLOBAL */
/* ========================= */
html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* HEADER + LOGO + NAV */
/* ========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    animation: fadeIn 1s ease forwards;
    background: transparent;
}

.logo {
    height: 110px;
    width: auto;
    border-radius: 50%;
}

.top-nav-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.top-btn {
    background: rgba(255,255,255,0.18);
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: 0.2s;
    white-space: nowrap;
    animation: fadeIn 1.3s ease forwards;
}

.top-btn:hover {
    background: rgba(255,255,255,0.28);
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
    height: 100vh;
    background: url('../assets/images/BACKROUND.PNG') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 20px;
    margin-top: 80px;
    animation: fadeIn 1.6s ease forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.goal {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================= */
/* STORE BUTTON */
/* ========================= */
.store-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: rgba(255, 123, 0, 0.85);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(255, 123, 0, 0.6);
    transition: 0.25s ease;
}

.store-btn:hover {
    background: rgba(255, 123, 0, 1);
    box-shadow: 0 0 28px rgba(255, 123, 0, 0.9);
    transform: translateY(-3px);
}

/* ========================= */
/* AUDIENCE SECTION */
/* ========================= */
.audience-section {
    padding: 60px 40px;
    animation: fadeIn 1.8s ease forwards;
}

.audience-title {
    text-align: center;
    margin-bottom: 40px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.audience-box {
    background: #f7f7f7;
    color: #000;
    padding: 20px;
    border-radius: 10px;
}

/* ========================= */
/* FEATURE SECTION */
/* ========================= */
.feature-section {
    padding: 60px 40px;
    animation: fadeIn 2s ease forwards;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background: #f7f7f7;
    color: #000;
    padding: 20px;
    border-radius: 10px;
}

.feature-quote {
    margin-top: 40px;
    text-align: center;
    font-size: 1.3rem;
}

/* ========================= */
/* STORE PAGE OVERRIDES */
/* ========================= */

/* PURE WHITE STORE BACKGROUND */
.store-page {
    background: #ffffff !important;
    color: #000 !important;
}

/* Make header visible on white */
.store-page .site-header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.store-page .top-btn {
    background: rgba(0,0,0,0.08);
    color: #000;
}

.store-page .top-btn:hover {
    background: rgba(0,0,0,0.18);
}

/* Store container */
.store-container {
    padding: 140px 40px 60px;
    animation: fadeIn 1.4s ease forwards;
}

.store-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
    padding-bottom: 60px;
}

/* Product Card */
.product-card {
    background: #fff;
    color: #000;
    border-radius: 14px;
    padding: 18px;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: 0.25s ease;
    animation: fadeIn 1.6s ease forwards;
}

.product-card:hover {
    background: #f5f5f5;
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(0,0,0,0.15);
}

/* Product Image */
.prod-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Product Title */
.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

/* Product Price */
.product-card p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .store-container {
        padding: 120px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 25px;
    }

    .prod-img {
        height: 180px;
    }
}

