/* Global Reset */

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


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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #a82120; /* Solid Red */
    padding: 10px 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

header.scrolled {
    background: rgba(168, 33, 32, 0.8); /* Slightly transparent */
    backdrop-filter: blur(8px); /* Adds blur effect */
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Parallax Sections */
/* .parallax {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
} */


/* Parallax Section - Minimalist Fix for iPhone */
/* Base Parallax Style */
.parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-layer {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-layer img {
    width: auto;
    height: 100vh;
    object-fit: cover;
    
}


/* Standard Sections */
section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    font-size: 1.2rem;
    z-index: 100;
    background-color: white;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -250px; /* Start hidden */
        width: 250px;
        height: 100vh;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        background: rgba(168, 33, 32, 1);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        padding-top: 60px;
    }

    nav ul.show {
        right: 0; /* Slide in */
    }

    nav ul li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }
}



/* Contact Form Styling */
.contact-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1.5rem;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    text-align: left;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.5rem;
}

.contact-form .checkbox {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.contact-form .checkbox input {
    margin-right: 10px;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #a82120;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.5rem;
}

.contact-form button:hover {
    background: #891a18;
}

#formMessage {
    margin-top: 15px;
    font-weight: bold;
}


/* Default Image Styling */
img {
    max-width: 100%; /* Makes images responsive */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Prevents extra space below images */
    margin: 10px auto; /* Centers images and adds spacing */
}

/* Rounded Image */
.img-rounded {
    border-radius: 10px;
}

/* Circular Image */
.img-circle {
    border-radius: 50%;
}

/* Image with Shadow */
.img-shadow {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Image Hover Effect */
.img-hover:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    transition: transform 0.3s ease-in-out;
}

/* Image Border */
.img-bordered {
    border: 3px solid #a82120; /* Matches header color */
    border-radius: 5px;
}

/* Responsive Image Container */
.img-container {
    text-align: center;
    padding: 10px;
}

/* Special Styling for Banner Images */
.banner-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}



h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

/* Paragraph Styling */
p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}




/* Footer Styling */
footer {
    position: relative;
    background-color: #a82120; /* Match site theme */
    color: white;
    text-align: center;
    padding: 20px 0;
    z-index: 100;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Footer Links */
.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffcccb;
}

/* Social Media Icons */
.footer-social a {
    font-size: 24px;
    color: white;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffcccb;
}

/* Email Link */
.footer-contact p {
    font-size: 16px;
    margin: 5px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #ffcccb;
}

/* Bottom Copyright Footer */
.footer-bottom {
    background-color: #891a18; /* Darker red */
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-around;
    }
}



/* Scroll Down Section */
.scroll-down {
    text-align: center;
    margin: 50px 0;
}

.scroll-down p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Bouncing Button */
.scroll-btn {
    background-color: #a82120; /* Red */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    animation: bounce 1.5s infinite;
}

.scroll-btn:hover {
    background-color: #891a18;
}

/* Font Awesome Icon Styling */
.scroll-btn i {
    transition: transform 0.3s;
}

.scroll-btn:hover i {
    transform: translateY(3px);
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}





.game-card {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}

.game-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #a82120;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.game-card .btn:hover {
    background: #891a18;
}




#reviews {
    text-align: center;
    margin-top: 50px;
}

.review {
    max-width: 500px;
    margin: auto;
    font-size: 1.2rem;
    color: #555;
}

/* Initially Hide Elements for Scroll Animation */
.scroll-slide {
    opacity: 0;
    transform: translateX(50px); /* Start off-screen to the right */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When Element Becomes Visible */
.scroll-slide.visible {
    opacity: 1;
    transform: translateX(0); /* Moves to normal position */
}

.glitch {
    animation: glitch 0.5s infinite;
}

@keyframes glitch {
    0% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(-5px); }
}


/* Newsletter Section */
#newsletter {
    text-align: center;
    background: #a82120;
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Input Field */
#newsletter input {
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

/* Subscribe Button */
#newsletter button {
    margin-top: 10px;
    padding: 12px 20px;
    background: white;
    color: #a82120;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#newsletter button:hover {
    background: #ffcccb;
    color: black;
}

/* Form Message */
#formMessage {
    margin-top: 10px;
    font-size: 14px;
}


/* Contact Section */
#contact {
    text-align: center;
    padding: 40px 20px;
    background: #f4f4f4;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Input & Textarea */
#contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
#contact button {
    margin-top: 10px;
    padding: 12px 20px;
    background: #a82120;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#contact button:hover {
    background: #ffcccb;
    color: black;
}

/* Form Message */
#formMessage {
    margin-top: 10px;
    font-size: 14px;
}

#privacy-policy p
{
  text-align: left; 
}
