/* ===================================
   Slinger Valley Asia - Main Styles
   RDR2-Themed Western Design
   =================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* === ROOT VARIABLES === */
:root {
    --primary-gold: #d4af37;
    --dark-red: #8b0000;
    --deep-brown: #2b1810;
    --leather-brown: #3d2817;
    --cream: #f5f5dc;
    --off-white: #faf8f3;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --overlay: rgba(0, 0, 0, 0.6);
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--deep-brown);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(43, 24, 16, 0.98) 0%, rgba(43, 24, 16, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(43, 24, 16, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 2px solid var(--primary-gold);
    background: rgba(43, 24, 16, 0.8);
}

.badge-text {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Rye', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--cream);
    text-shadow: 3px 3px 6px var(--shadow-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.hero-divider .star {
    color: var(--primary-gold);
    font-size: 20px;
}

.hero-divider .line {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 24px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--deep-brown);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Rye', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ornament-line {
    width: 100px;
    height: 2px;
    background: var(--primary-gold);
}

.ornament-star {
    color: var(--primary-gold);
    font-size: 24px;
}

/* === ABOUT SECTION === */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--deep-brown) 0%, var(--leather-brown) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-gold);
}

.about-image {
    position: relative;
}

.image-frame {
    border: 4px solid var(--primary-gold);
    padding: 10px;
    background: var(--deep-brown);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    display: block;
}

/* === FEATURES SECTION === */
.features {
    padding: 100px 0;
    background: var(--deep-brown);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.8) 0%, rgba(43, 24, 16, 0.8) 100%);
    padding: 40px 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/cta-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(43, 24, 16, 0.6) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Rye', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px var(--shadow-dark);
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--cream);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--deep-brown);
    border-top: 3px solid var(--primary-gold);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cream);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(245, 245, 220, 0.7);
    margin-bottom: 5px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-brown);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu a {
        display: block;
        padding: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-divider .line,
    .ornament-line {
        width: 40px;
    }
}