/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffd700;
    --text-color: #ffffff;
    --dark-gray: #333333;
    --light-gray: #666666;
    --section-bg: #242424;
    --card-bg: rgba(255, 255, 255, 0.05);
    --darker-bg: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Section Backgrounds */
section {
    background-color: var(--section-bg);
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--primary-color);
}

/* Hero Section Update */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    height: auto;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* About Section Enhancement */
.about-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Gallery Section */
#gallery {
    background-color: #1a1a1a!important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    padding: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Download Section */
.download-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.btn-platform {
    background-color: var(--dark-gray);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-platform:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-platform i {
    font-size: 1.5rem;
}

/* Contact Section */
#contact {
    background-color: #1a1a1a!important;
}

.contact-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    margin: 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Policy Pages Enhancement */
.policy-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-content ul {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    border-radius: 10px;
    margin: 15px 0;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.last-updated {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.awards-list {
    list-style: none;
    padding: 0;
}

.awards-list li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Age Verification Section */
.age-verify-section {
    background: linear-gradient(145deg, #1a1a1a, #242424);
    padding: 20px 0;
    position: relative;
    z-index: 1030;
    border-bottom: 3px solid var(--secondary-color);
}

.age-verify-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.verify-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: cardAppear 0.5s ease-out;
}

.verify-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    animation: iconSpin 1s ease-out;
}

.verify-card h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.verify-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.verify-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.accept-btn, .decline-btn {
    min-width: 180px;
    padding: 12px 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.accept-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.accept-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.decline-btn {
    background-color: transparent;
    border: 2px solid var(--text-color);
}

.decline-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: rotate(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-platform {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero {
        text-align: center;
    }
    
    .footer [class^="col-"] {
        margin-bottom: 30px;
        text-align: center;
    }

    .verify-card {
        padding: 20px 15px;
    }

    .verify-card h2 {
        font-size: 1.75rem;
    }

    .verify-card p {
        font-size: 1rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .accept-btn, .decline-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
} 