@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #d32f2f;
    /* Deep Maroon / Festive Red */
    --primary-light: #ff6659;
    --primary-dark: #9a0007;
    --secondary: #f57c00;
    /* Saffron Orange */
    --accent: #ffb300;
    /* Gold */
    --bg-color: #ffffff;
    --bg-alt: #fcf9f2;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(211, 47, 47, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 90px;
    /* prevent content hiding under fixed navbar when scrolling up / anchor click */
}

body {
    font-family: 'Noto Sans Kannada', 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans Kannada', 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Prevent sections from sitting under fixed navbar when scrolling up or using anchor links */
/* Exclude #contact (footer) to avoid extra blank space at bottom when scrolled down */
section[id]:not(#contact) {
    scroll-margin-top: 90px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-2-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* Utilities – sections below hero use festive background image */
.alt-bg {
    position: relative;
    background: url('assets/banner/hero_bg_sub.png') center center / cover no-repeat;
    overflow: hidden;
}

.alt-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 252, 249, 0.92);
    z-index: 0;
    pointer-events: none;
}

.alt-bg > * {
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-accent {
    color: var(--accent);
}

.color-text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(4px);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.glow {
    position: relative;
    z-index: 1;
}

.glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary), var(--primary));
    z-index: -1;
    border-radius: 52px;
    background-size: 400%;
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.glow:hover::after {
    opacity: 1;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* Background Shapes */
.site-wrapper {
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate;
}

.shape-1 {
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--accent);
}

.shape-2 {
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    animation-delay: -5s;
}

.shape-3 {
    bottom: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    animation-delay: -2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -50px) scale(1.1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    /* same as default to avoid layout jump on scroll up */
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar.scrolled .logo-title {
    color: var(--primary-dark);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    background: var(--bg-alt);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    /* White for hero overlay */
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Better visibility on dark bg */
}

.navbar.scrolled .logo-subtitle {
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    /* White for hero overlay */
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .menu-btn {
    color: var(--primary-dark);
    text-shadow: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-main);
    text-shadow: none;
}

/* Sections */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.section-header .separator {
    margin: 0 auto;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background: url('assets/banner/ganesha_hero.png') center center / cover no-repeat;
    background-attachment: fixed;
}

/* Dark, elegant overlay to ensure text is readable over the background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(20, 0, 5, 0.75), rgba(20, 0, 5, 0.35));
    z-index: 0;
}

/* Hero banner image (Ganesha) */
.hero-banner {
    margin: 0 0 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-banner-img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero>.container {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.special-attraction {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.15), rgba(255, 152, 0, 0.05));
    border-radius: var(--radius-md);
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.special-attraction::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: gleam 4s infinite;
}

.highlight {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin-bottom: 5px;
}

.special-attraction h3 {
    font-size: 2.2rem;
    margin-top: 5px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* About Section */
.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 40px;
    line-height: 1.5;
}

.purpose-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.purpose-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.purpose-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(245, 124, 0, 0.1));
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.list-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.list-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Lucky Draw Section */
.luckydraw {
    position: relative;
    background: url('assets/banner/hero_bg_sub.png') center center / cover no-repeat;
    overflow: hidden;
}

.luckydraw-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 242, 0.9),
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 179, 0, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(211, 47, 47, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.luckydraw .relative.z-1 {
    position: relative;
    z-index: 1;
}

.luckydraw-header {
    margin-bottom: 50px;
}

.luckydraw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.4);
    animation: luckydraw-badge-pulse 2.5s ease-in-out infinite;
}

@keyframes luckydraw-badge-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 179, 0, 0.4); transform: scale(1); }
    50% { box-shadow: 0 12px 32px rgba(255, 179, 0, 0.5); transform: scale(1.02); }
}

.luckydraw-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.luckydraw-emoji {
    -webkit-text-fill-color: initial;
    display: inline-block;
    animation: luckydraw-emoji-bounce 1.2s ease-in-out infinite;
}

@keyframes luckydraw-emoji-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.luckydraw-separator {
    width: 100px;
    height: 5px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 5px;
    box-shadow: 0 2px 12px rgba(255, 179, 0, 0.3);
}

.luckydraw-desc {
    font-size: 1.2rem;
    color: var(--bg-alt);
    max-width: 520px;
    margin: 0 auto 8px;
}

.luckydraw-cta {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.prizes-showcase {
    margin-top: 20px;
}

/* Events Section (Gallery) */
.events {
    position: relative;
    /* background: url('assets/banner/hero_bg_sub.png') center center / cover no-repeat; */
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.93);
    z-index: 0;
    pointer-events: none;
}

.events .container {
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.event-tile {
    grid-column: span 4;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.event-tile img,
.event-tile video {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 350ms ease;
}

.event-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18));
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.event-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.event-tile:hover img,
.event-tile:hover video {
    transform: scale(1.06);
}

.event-tile:hover::after {
    opacity: 1;
}

.prize-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(211, 47, 47, 0.2);
}

.prize-card:not(.premium):hover .prize-icon {
    transform: scale(1.1);
}

.prize-card .prize-icon {
    transition: transform 0.35s ease;
}

.prize-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prize-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin: 20px 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-card h4 {
    font-size: 1.3rem;
}

.prize-crown {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    animation: prize-crown-glow 2s ease-in-out infinite;
}

@keyframes prize-crown-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)); }
    50% { opacity: 0.9; filter: drop-shadow(0 0 12px rgba(255, 179, 0, 0.6)); }
}

.prize-card.premium {
    background: linear-gradient(145deg, #fffef9 0%, #fff8eb 50%, #fff4e0 100%);
    border: 3px solid var(--accent);
    box-shadow: 0 20px 50px rgba(255, 179, 0, 0.3), 0 0 0 1px rgba(255, 179, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 56px 30px 50px;
    margin-bottom: 30px;
    transform: scale(1.02);
}

.prize-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), var(--accent), transparent);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.prize-card.premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 28px 56px rgba(255, 179, 0, 0.4), 0 0 60px rgba(255, 152, 0, 0.25) inset;
}

.prize-card.premium .prize-rank {
    background: linear-gradient(135deg, var(--accent), #e6a800);
    color: var(--white);
    font-size: 1rem;
    padding: 8px 18px;
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.4);
}

.prize-card.premium .prize-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-card.premium h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-shadow: 0 2px 20px rgba(255, 179, 0, 0.2);
}

/* Silver & Bronze prize card accents */
.prize-card.prize-silver {
    border-top: 4px solid #c0c0c0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 0 0 1px rgba(192, 192, 192, 0.2);
}

.prize-card.prize-silver:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(192, 192, 192, 0.3);
}

.prize-card.prize-silver .prize-icon {
    color: #8a8a8a;
}

.prize-card.prize-bronze {
    border-top: 4px solid #cd7f32;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 0 0 1px rgba(205, 127, 50, 0.2);
}

.prize-card.prize-bronze:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(205, 127, 50, 0.35);
}

.prize-card.prize-bronze .prize-icon {
    color: #b87333;
}

.gleam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: gleam 3s infinite;
}

@keyframes gleam {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Details Section */
.ticket-info {
    max-width: 500px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    padding: 50px 40px;
    border-top: 5px solid var(--primary);
}

.ticket-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.ticket-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.ticket-price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    line-height: 1;
}

.per-ticket {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.ticket-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.ticket-features i {
    color: #4caf50;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: url('assets/banner/hero_bg_sub.png') center center / cover no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.88), rgba(154, 0, 7, 0.9));
    z-index: 0;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section .text-gradient-gold {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111;
    color: #f0f0f0;
    padding: 80px 0 30px;
}

.footer .logo-title {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    color: var(--accent);
    margin-top: 4px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-phone:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.other-prizes {
    margin-bottom: 30px;
}

/* Responsive Settings */
@media (max-width: 992px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .special-attraction {
        border-left: none;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .event-tile {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .prizes-showcase {
        margin-top: 30px;
    }

    .prize-card.premium h3 {
        font-size: 2rem;
    }

    .events-grid {
        gap: 12px;
    }

    .event-tile {
        grid-column: span 6;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .grid-2-small {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .ticket-card {
        padding: 40px 20px;
    }

    .event-tile {
        grid-column: span 12;
    }
}

.coupon-phone-numbers {
    display: inline-flex;
    flex-direction: column;
}

.coupon-phone-numbers .btn-phone {
    background-color: var(--white);
    color: var(--primary-dark);
    display: flow;
}

.footer-location {
    margin: 35px 10px;
}