/*
Theme Name: BassBet Scenic Casino
Theme URI: https://example.com/bassbet-theme
Author: Your Name
Author URI: https://example.com
Description: A stunning dark blue casino-style WordPress theme with scenic mountain hero. Features static hero/footer sections with dynamic WordPress content area. Perfect for brand protection and affiliate casino sites.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bassbet-scenic
Tags: casino, gaming, dark-theme, one-column, custom-logo, custom-menu
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-bg-deep: #0a1628;
    --color-bg-mid: #0d1f3c;
    --color-bg-surface: #122a4e;
    --color-bg-card: #153561;
    --color-gold: #d4a853;
    --color-gold-light: #f0c866;
    --color-gold-glow: rgba(212, 168, 83, 0.4);
    --color-teal: #2dd4bf;
    --color-blue-accent: #3b82f6;
    --color-red: #e85a4f;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-heading: #ffffff;
    --gradient-hero: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.4) 30%, rgba(10, 22, 40, 0.85) 60%, #0a1628 100%);
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #f0c866 50%, #d4a853 100%);
    --gradient-button: linear-gradient(135deg, #e85a4f 0%, #d64040 100%);
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1100px;
    --border-radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg-deep);
    overflow-x: hidden;
}

a { color: var(--color-gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--color-gold-light); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
}

p { margin-bottom: 1rem; }

.site-wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.site-logo { display: flex; align-items: center; gap: 10px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-text .bass { color: var(--color-teal); }
.logo-text .bet { color: var(--color-gold); }

.nav-buttons { display: flex; align-items: center; gap: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-blue-accent);
}

.btn-outline:hover {
    background: var(--color-blue-accent);
    color: white;
}

.btn-primary {
    background: var(--gradient-button);
    color: white !important;
    box-shadow: 0 4px 15px rgba(232, 90, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 90, 79, 0.5);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 30px 80px;
    overflow: hidden;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse 120% 60% at 50% 20%, rgba(45, 90, 120, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 150% 40% at 50% 90%, rgba(20, 60, 100, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, #1a3a5c 0%, #0f2847 20%, #0d2240 40%, #0a1c38 60%, #0a1628 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: var(--gradient-hero);
    z-index: 1;
}

/* Mountains */
.mountains {
    position: absolute;
    bottom: 30%; left: 0;
    width: 100%; height: 50%;
    z-index: 0;
}

.mountain {
    position: absolute;
    bottom: 0;
    filter: blur(1px);
}

.mountain-1 {
    left: -5%;
    width: 40%; height: 100%;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2847 100%);
    clip-path: polygon(0 100%, 50% 20%, 100% 100%);
    opacity: 0.7;
}

.mountain-2 {
    left: 25%;
    width: 50%; height: 120%;
    background: linear-gradient(135deg, #152d45 0%, #0d2240 100%);
    clip-path: polygon(0 100%, 40% 10%, 80% 40%, 100% 100%);
    opacity: 0.8;
}

.mountain-3 {
    right: -5%;
    width: 45%; height: 90%;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2847 100%);
    clip-path: polygon(0 100%, 60% 15%, 100% 100%);
    opacity: 0.6;
}

/* Particles */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 70%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 25%; left: 80%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 10%; left: 50%; animation-delay: 1s; }
.particle:nth-child(4) { top: 35%; left: 30%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 20%; left: 70%; animation-delay: 2s; }
.particle:nth-child(6) { top: 40%; left: 15%; animation-delay: 2.5s; }
.particle:nth-child(7) { top: 30%; left: 90%; animation-delay: 3s; }
.particle:nth-child(8) { top: 45%; left: 60%; animation-delay: 3.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px var(--color-gold-glow);
    line-height: 1.3;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--gradient-button);
    color: white !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(232, 90, 79, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 90, 79, 0.5);
}

.hero-cta:hover::before { left: 100%; }

.hero-notice {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-notice svg { width: 16px; height: 16px; }

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    background: var(--color-bg-deep);
    position: relative;
}

.content-area {
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Entry Content - WordPress Styling */
.entry-content h2,
.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 25px;
    margin-top: 2rem;
    font-style: italic;
}

.entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-gold-light);
    margin-top: 1.5rem;
}

.entry-content p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.entry-content strong { color: var(--color-text-heading); }

.entry-content ul,
.entry-content ol {
    margin: 25px 0;
    padding-left: 25px;
}

.entry-content li {
    margin-bottom: 12px;
    color: var(--color-text);
}

.entry-content li::marker { color: var(--color-gold); }

.entry-content a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(212, 168, 83, 0.05);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

.entry-content img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Alignments */
.alignright {
    float: right;
    margin: 0 0 30px 40px;
    max-width: 280px;
}

.alignleft {
    float: left;
    margin: 0 40px 30px 0;
    max-width: 280px;
}

.aligncenter {
    display: block;
    margin: 30px auto;
}

/* Content Divider */
.content-divider,
.wp-block-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
    margin: 50px 0;
    border: none;
}

/* Inline CTA */
.inline-cta,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: var(--color-bg-deep) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    margin: 30px 0;
    box-shadow: 0 4px 20px var(--color-gold-glow);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.inline-cta:hover,
.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-gold-glow);
}

/* Clearfix */
.clearfix::after { content: ''; display: table; clear: both; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #050d18 100%);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    padding: 60px 30px 30px;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.responsible-gaming {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px; height: 55px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.responsible-gaming h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.responsible-gaming p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.responsible-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.responsible-links a:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: rgba(212, 168, 83, 0.3);
    color: var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: var(--color-text-muted); font-size: 0.95rem; }
.footer-column a:hover { color: var(--color-gold); padding-left: 5px; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright { color: var(--color-text-muted); font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 25px; }
.footer-legal-links a { color: var(--color-text-muted); font-size: 0.85rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-buttons .btn { display: none; }
    .hero-section { padding: 100px 20px 60px; min-height: auto; }
    .hero-title { font-size: 1.8rem; letter-spacing: 2px; }
    .hero-cta { padding: 16px 40px; }
    .alignright, .alignleft { float: none; max-width: 100%; margin: 0 0 30px 0; }
    .content-area { padding: 50px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .responsible-links { flex-direction: column; align-items: center; }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-subtitle { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }
.hero-notice { animation-delay: 0.5s; }
