

/* Contact Page Section */
.contact-section {
    padding: 60px 20px;
    background-color: #0D0D0D;
    text-align: center;
}

/* Container for the entire contact content */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact header styling */
.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #f39c12;  /* Accent color */
}

.contact-header p {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 40px;
}

/* Contact form styling */
.contact-form {
    background-color: #2C2C2C;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f39c12;  /* Accent color */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #f39c12;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 2px solid #333;
    background-color: #444;
    color: #B2B2B2;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #f39c12;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e67e22;
}

/* Contact Info Section */
.contact-info {
    margin-top: 20px;
    background-color: #2C2C2C;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.contact-info p {
    font-size: 1.1rem;
    color: #B2B2B2;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    text-decoration: none;
    font-size: 1.1rem;
    color: #f39c12;
    font-weight: bold;
}

.social-icon:hover {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

/* About Section Styling */
.about-section {
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* Container for About content */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Text Styling */
.about-text h1 {
    font-size: 3rem;
    color: #f39c12;  /* Accent color */
    margin-bottom: 20px;
    font-weight: bold;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d1d1d1; /* Lighter gray for paragraphs */
    text-align: justify;
}

/* About Images Section */
.about-images {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

/* Image Container */
.image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

/* Styling for Images */
.about-image {
    width: 100%;
    max-width: 100%;  /* Ensure the images scale responsively */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.about-image:hover {
    transform: scale(1.05);  /* Slight zoom effect on hover */
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .about-images {
        flex-direction: column; /* Stack images vertically */
        align-items: center;
    }

    .about-image {
        max-width: 80%;
    }
}



/* Overall container for the cta_2 section */
.cta_2 {
    padding: 50px 20px !important;
    color: #B2B2B2 !important;  /* Light text color */
}

.cta_2_columns_wrapper{
    padding-top: 200px;
}

/* Container for both columns */
.cta2-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;  /* Align columns to the top */
    gap: 20px !important;
}

/* Left column styling */
.cta_2_columns_left {
    flex: 1 1 40% !important;  /* Flex-grow, flex-shrink, and base size of 40% */
    padding: 20px !important;
}

.cta_2_columns{
    float: left;
    width: 50%;
}

.cta_2_columns_left .two_col_image {
    width: 450px !important;
    height: auto !important;
    border-radius: 8px !important;  /* Optional: adds rounded corners */
}

/* Right column styling */
.cta_2_columns_right {
    flex: 1 1 55% !important;  /* Flex-grow, flex-shrink, and base size of 55% */
    padding: 20px !important;
}

/* Content within the right column */
.cta_2_columns_right h1 {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    color: #f39c12 !important;  /* Accent color */
}

.cta_2_columns_right p {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: #B2B2B2 !important;
}

/* Button styling */
button.green_buttons {
    padding: 15px 30px !important;
    background-color: #f39c12 !important;
    color: white !important;
    font-size: 1.125rem !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

button.green_buttons:hover {
    background-color: #e67e22 !important;
}





/* Features Section */
.features {
    background-color: #0D0D0D; /* Light background color */
    padding: 50px 20px;
    text-align: center;
    color: #171717; /* Dark text for contrast */
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #F5E347;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #F39C12; /* Accent color for headings */
}

.features p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #171717; /* Dark text color */
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.green_buttons{
    background-color: #43B649;
    transition: 0.4s;
}

.green_buttons:hover{
    background-color: #4AC20F !important;
    transition: 0.4s;
}



.feature-card {
    background-color: #171717; /* Dark background for cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 280px;
    text-align: center;
    color: #B2B2B2; /* Light gray text inside cards */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #F39C12; /* Accent color for card headings */
}

.feature-card p {
    font-size: 1rem;
    color: #B2B2B2; /* Light gray color for text inside cards */
}

a.cta-button {
    padding: 15px 30px;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}




.main_content_loader{
    max-height: 100vh;
    height: 100vh;
    overflow: auto;
}


/* Hero Section Styling */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0D0D0D !important;
    background-image: url('../images/hero.jpg');  /*Replace with your hero image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height of the screen */
    color: white;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 1; /* Ensures the text is on top of the background image */
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* Optional: Adding a dark overlay to improve text visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
}


.music_menu {
    list-style-type: none;
    padding: 0;  /* Optional: Removes padding from the list */
    margin: 0;   /* Optional: Removes margin from the list */
}

.music_menu li a {
    color: #B2B2B2;
    text-decoration: none;
}

.music_menu li {
    padding: 10px 10px;
    width: 70%;
    border-radius: 3px;
    transition: 0.3s;
    float: left;
}


.music_menu li:hover {
    background-color: #0D0D0D;
    transition: 0.3s;
}


.music_menu_wrapper{
    padding: 10px;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main{
	float: left;
	width: 100%;
}
/* Header container styling */
.side_header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #0D0D0D;
    color: white;
    padding: 10px 30px;
}

/* Left section (logo and search bar) */
.header-left {
    display: flex;
    align-items: center; /* Vertically center logo and search bar */
}

/* Logo styling */
/* Logo container */
.logo {
    text-align: center;     
    width: 100%; 
    float: left;   
    height: 100px;   
    padding: 10px;           
}

/* Logo image */
.logo-img {
    height: 30px;   
    width: auto; 
    float: left;  
    margin-left:  60px;                
}

/* Search bar styling */
.search-bar {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid #fff;
    background-color: #171717;
    color: white;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.search-bar:focus {
    background-color: #666;
    outline: none;
}

/* Right section (menu) */
.header-right {
    display: flex;
    align-items: center;
    color: #B2B2B2;
}

/* Title styling */
header h1 {
    margin: 0;
    font-size: 24px;
    padding-right: 20px;
}

/* Navigation menu styling */
nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #B2B2B2;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Set up Flexbox container for the sections */
.two_rows_columns {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    color: #B2B2B2;
    min-height: 100vh;
}

.two_rows_columns_left .two_rows_columns_content{
	padding: 5px;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    bottom: 0;
}

/* Style for the left column */
.two_rows_columns_left {
    width: 300px; /* Fixed width */
    padding: 10px;
    background-color: #171717;

}

/* Style for the right column */
.two_rows_columns_right {
    flex-grow: 1; /* Takes the remaining space */
    padding: 0px;
    box-sizing: border-box;
    background-color: #0D0D0D;
}



footer{
	float: left;
	width: 100%;
    background-color: #1F1F1F;
    padding: 20px;
    color: #5F6064;
}


/* Styling the scrollbar */
::-webkit-scrollbar {
    width: 8px; /* Width of the vertical scrollbar */
    height: 8px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
    color: #171717;
    background-color: #171717; /* Dark color for the scrollbar thumb */
    border-radius: 10px; /* Rounded edges for the thumb */
}

::-webkit-scrollbar-track {
    background-color: #f4f4f9; /* Light background for the track */
    border-radius: 10px; /* Rounded edges for the track */
    color: #171717;
}

/* Optional: Hover effect for scrollbar */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Slightly lighter color when hovered */
    color: #171717;
}



/* Top Beats Section */
.top_bets_section {
    padding: 50px 20px;
    color: #B2B2B2; /* Light text color */
}

/* Container for the beats */
.top-beat-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for larger screens */
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Styling for each beat card */
.top-beat {
    background-color: #2C2C2C; /* Dark card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Beat title */
.top-beat h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f39c12; /* Accent color */
}

/* Progress bar container */
.progress-bar-container {
    background-color: #444; /* Light background for the bar */
    border-radius: 8px;
    height: 10px;
    margin-bottom: 20px;
    width: 100%;
}

/* Progress bar style */
.progress-bar {
    background-color: #F39C12; /* Orange color for the progress */
    height: 100%;
    border-radius: 8px;
}

/* Pay button styling */
.pay-button {
    padding: 12px 30px;
    background-color: #f39c12;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pay-button:hover {
    background-color: #e67e22;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .top-beat-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .top-beat-container {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }
}
