/* sstyle3.css - FINAL OPTIMIZED & CLEANED VERSION */

/* ================================================
   1. GLOBAL VARIABLES & BASE
================================================ */
:root {
    --primary-color: #C70039;
    --primary-dark: #0B4A2A;
    --accent-color: #FFC300;
    --text-primary: #333;
    --text-secondary: #6c757d;
    --white: #fff;

    --border-radius-base: 0.5rem;
    --box-shadow-base: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: 85px;
}

/* Bootstrap Color Overrides */
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.text-primary-dark { color: var(--primary-dark) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* ================================================
   2. BUTTONS
================================================ */
.btn-primary-dark {
    color: var(--white);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-primary-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary-dark {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary-dark:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
    font-weight: bold;
}
.btn-accent:hover {
    background-color: #e6b200;
    border-color: #e6b200;
}

/* ================================================
   3. NAVIGATION HEADER
================================================ */
#header-nav {
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        var(--primary-color) 95%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-bottom: 0.5em ridge var(--primary-dark);
    border-top: 0.5em ridge var(--primary-dark);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: var(--box-shadow-base);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.75)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand span {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* ================================================
   4. HERO SECTION
================================================ */
.hero-section {
    min-height: 500px;
    background: url('image09.jpg') center/cover no-repeat;
    position: relative;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-text-box {
    position: relative;
    padding: 1.5rem 0;
    background: transparent;
}

.hero-section h1,
.hero-section p,
.hero-links a {
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    font-weight: bold;
}

.hero-links a:hover {
    color: var(--accent-color) !important;
}

/* ================================================
   5. COUNTDOWN BAR
================================================ */
.countdown-bar {
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius-base);
    display: flex;
    justify-content: center;
    align-items: center;
}
.countdown-bar span {
    color: var(--white);
}

/* ================================================
   6. AI GENERATOR FORM
================================================ */
.form-container {
    border: 2px solid var(--primary-color);
    background: var(--white);
}

.form-container h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem !important;
}

.example-question {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
}
.example-question:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.output-box {
    border: 1px solid #dee2e6;
    background: #f9f9f9;
}

/* ================================================
   7. BLOG / ARTICLE CARDS
================================================ */
.section-heading {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 3rem !important;
    color: var(--primary-color);
}

.article-card {
    transition: 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

.article-image {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}

/* Large article responsive fixes */
@media (max-width: 767.98px) {
    .large-article-card .article-image-container {
        height: 250px;
    }
}

@media (min-width: 768px) {
    .large-article-card .article-image-large {
        border-bottom-left-radius: var(--border-radius-base);
        border-top-right-radius: 0;
    }
}

/* ================================================
   8. HOT TOYS SCROLL LIST
================================================ */
.toy-list-scroll {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark) var(--white);
}

.toy-list-scroll ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.toy-list-scroll ul li::before {
    content: '★';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Multi-column layout */
.columns-2 {
    column-count: 1;
}
@media (min-width: 992px) {
    .columns-2 {
        column-count: 2;
    }
}

/* ================================================
   9. SHOPPING TIPS
================================================ */
.tip-card {
    background: var(--white);
    transition: box-shadow 0.3s ease;
}
.tip-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
}

.tip-heading {
    color: var(--primary-dark);
}

/* ================================================
   10. FOOTER
================================================ */
.page-footer {
    background: var(--primary-dark) !important;
    border-top: 5px solid var(--primary-color);
}

.page-footer a:hover {
    color: var(--accent-color) !important;
}

.page-footer img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.page-footer img:hover {
    opacity: 1;
}