:root {
    --adventure-orange: #F4A261;
    --primary-blue: #3B95D1;
    --sky-blue: #00AFF0;
    --deep-indigo: #3E4095;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --charcoal: #333333;
    --black: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
}

.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.min-vh-75 {
    min-height: 75vh;
}

.puzzle-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.puzzle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--sky-blue);
}

.puzzle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.puzzle-card h4 {
    color: var(--deep-indigo);
    margin-bottom: 15px;
    font-weight: 600;
}

.puzzle-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.newsletter-section {
    background: var(--light-gray);
}

.btn-warning {
    background-color: var(--adventure-orange);
    border-color: var(--adventure-orange);
    font-weight: 600;
}

.btn-warning:hover {
    background-color: var(--deep-indigo);
    border-color: var(--deep-indigo);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
}

/* Shopify Buy Button Overrides */
.shopify-buy__btn {
    background-color: var(--adventure-orange) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__btn:hover {
    background-color: var(--deep-indigo) !important;
    transform: translateY(-2px) !important;
}

.shopify-buy__product {
    margin-bottom: 20px !important;
}

.shopify-buy__product-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--deep-indigo) !important;
    margin-bottom: 10px !important;
}

.shopify-buy__product-price {
    color: var(--primary-blue) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Custom styling for buy button containers */
#wordsearch-products,
#crossword-products,
#sudoku-products,
#coloring-products,
#spanish-products {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .puzzle-card {
        margin-bottom: 30px;
    }
}

/* Navigation styling */
.navbar-brand img {
    height: 50px;
    max-width: 300px;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-charcoal) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--adventure-orange) !important;
}

/* Footer spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Form styling */
.form-control:focus {
    border-color: var(--adventure-orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 162, 97, 0.25);
}

/* Section titles */
section h2 {
    color: var(--deep-blue);
    font-weight: 700;
    margin-bottom: 2rem;
}

section h3 {
    color: var(--deep-blue);
    font-weight: 600;
}