/* hh55bet Duck Hunters Theme - Crepúsculo Dourado */
/* 2026 SEO Optimized CSS */

:root {
    --primary-gold: #D4A853;
    --primary-amber: #E8A849;
    --primary-green: #1B5E3B;
    --dark-wood: #2C1810;
    --light-wood: #8B6914;
    --sunset-orange: #E85D04;
    --deep-blue: #1A365D;
    --marsh-green: #3D5A47;
    --cream: #FDF6E3;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-wood) 0%, #1a0f0a 100%);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--cream);
}

a {
    color: var(--primary-amber);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Non-sticky as required */
header {
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.98) 0%, rgba(26, 15, 10, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-gold);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation */
nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav a {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--marsh-green) 0%, var(--primary-green) 100%);
    border-radius: 6px;
    color: var(--cream);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-amber) 100%);
    color: var(--dark-wood);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--primary-amber) 100%);
    color: var(--text-light) !important;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
    border: 2px solid var(--primary-gold);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232, 93, 4, 0.6);
    background: linear-gradient(135deg, var(--primary-amber) 0%, var(--sunset-orange) 100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(26, 54, 93, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: rgba(0,0,0,0.3);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--primary-gold);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--cream);
}

.breadcrumb span {
    color: var(--primary-gold);
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-amber));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(61, 90, 71, 0.3) 0%, rgba(44, 24, 16, 0.5) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 168, 83, 0.3);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    margin-bottom: 0.75rem;
}

.game-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Author Box - E-E-A-T */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(61, 90, 71, 0.4) 0%, rgba(44, 24, 16, 0.6) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(212, 168, 83, 0.3);
    margin: 2rem 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.author-credentials {
    font-size: 0.9rem;
    color: var(--primary-amber);
    margin-bottom: 0.75rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: linear-gradient(145deg, rgba(253, 246, 227, 0.1) 0%, rgba(44, 24, 16, 0.4) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: bold;
    color: var(--primary-gold);
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.8;
}

.review-stars {
    color: var(--primary-amber);
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.6;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(61, 90, 71, 0.2);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-gold);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 168, 83, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}

/* Payment Methods */
.payment-section {
    background: linear-gradient(135deg, rgba(27, 94, 59, 0.3) 0%, rgba(44, 24, 16, 0.5) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.payment-icons img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1a0f0a 0%, #0d0705 100%);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--cream);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.footer-badges img {
    height: 70px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(44, 24, 16, 0.5) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(212, 168, 83, 0.2);
}

.responsible-gaming img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--primary-gold);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
    }
    
    nav {
        justify-content: center;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        text-align: center;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .payment-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-badges img {
        height: 50px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    header, footer, .cta-btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
