/*
Theme Name: GeneratePress Child
Theme URI: https://www.reddyannaa.in/generatepress-child
Description: A child theme for GeneratePress with a custom homepage design.
Author: Ronak
Template: generatepress
Version: 1.0.0
*/

/* Custom Styles for Reddy Anna Sports Betting Homepage */
body {
    background-color: #000; /* Full black background */
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.site-header {
    background: #111; /* Dark header */
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid #FFD700;
}

.site-logo img {
    width: 180px;
    transition: transform 0.3s;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-navigation a {
    color: #FFD700; /* Gold text for navigation */
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s;
}

.main-navigation a:hover {
    color: #C9B037; /* Darker gold on hover */
    transform: translateY(-5px);
}

.login-button, .join-button {
    background: #FFD700; /* Gold buttons */
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.3s;
}

.login-button:hover, .join-button:hover {
    background: #C9B037;
    transform: scale(1.05);
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: url('https://www.reddyannaa.in/wp-content/uploads/2025/04/images.jpeg') no-repeat center center/cover;
    border-radius: 20px;
    margin: 50px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    max-width: 80%;
    color: #fff;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
    border-radius: 20px;
}

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

.hero-content h1 {
    color: #FFD700; /* Bright gold for heading */
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-buttons a {
    display: inline-block;
    margin: 20px 15px;
    padding: 18px 35px;
    background: #C9B037; /* Dark gold for CTA */
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
}

.cta-buttons a:hover {
    background: #FFD700; /* Bright gold on hover */
    transform: scale(1.1);
}

/* Promotional Banner Styling */
.promotional-banner {
    margin-top: 60px;
    background: #111; /* Solid dark background for promo */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.promotional-banner p {
    color: #FFD700; /* Gold text for promo */
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.promotional-banner a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background: #C9B037; /* Gold button */
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.promotional-banner a:hover {
    background: #FFD700; /* Bright gold on hover */
}

/* Footer Styling */
.site-footer {
    background: #111; /* Dark footer background */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.site-footer p {
    font-size: 16px;
}

/* Make sure everything is responsive */
@media only screen and (max-width: 768px) {
    .site-logo img {
        width: 150px;
    }

    .main-navigation a {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-buttons a {
        padding: 12px 20px;
    }

    .promotional-banner p {
        font-size: 20px;
    }
}
