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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff4444, #ff3333); /* Red gradient background */
    color: white;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #282828;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #ff4444;
}

.logo-img {
    width: 120px; /* Adjust logo size */
    margin-right: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.9;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 30px;
}

.btn-enter {
    background: linear-gradient(135deg, #ff3333, #ff4444);
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease-in;
    display: inline-block;
    margin-bottom: 20px; /* Add some space below the button */
}

.btn-enter:hover {
    transform: scale(1.1);
}

/* About Us Section */
.about-us,
.features {
    background-color: #282828;
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 68, 68, 0.3);
}

.about-us h2,
.features h2 {
    font-size: 32px;
    color: #ff4444;
    margin-bottom: 20px;
}

.about-us p,
.features p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Features Section */
.feature {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.feature i {
    font-size: 40px;
    color: #ff4444;
    margin-right: 15px;
}

.feature p {
    font-size: 16px;
    color: white;
}

/* Content Section */
.content-section {
    background-color: #282828;
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
}

.content-section h2 {
    font-size: 32px;
    color: #ff4444;
    margin-bottom: 20px;
}

.additional-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Footer */
footer {
    background-color: #282828;
    padding: 20px;
    color: white;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #e0e0e0;
}

.social-links a {
    color: #ff4444;
    margin: 0 10px;
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px; /* Smaller font for hero */
    }

    .hero p {
        font-size: 16px; /* Smaller font for hero */
    }

    .logo {
        font-size: 22px; /* Smaller logo font */
    }

    .content-section {
        padding: 20px; /* Reduced padding for mobile */
    }

    /* Adjust the button on mobile devices */
    .btn-enter {
        width: 90%; /* Full width for mobile */
        padding: 10px; /* Reduced padding */
        font-size: 18px; /* Slightly smaller font size */
        margin: 0 auto; /* Center the button */
    }

    footer {
        padding: 20px; /* Reduced footer padding for mobile */
    }
}

/* Additional Styles */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px; /* Adjust icon size */
    color: #ff4444; /* Icon color */
}
