/* Global Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* General Layout Settings */
.container {
    width: 1200px; /* This will be the maximum width for the layout */
    margin: 0 auto; /* Center the container */
    padding: 20px;
}

/* Navbar - No change for mobile view */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 20px;
}

.navbar .logo img {
    width: 50px;
}

.navbar nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

.navbar .auth-buttons button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 12px 20px;
    background-color: #ff6600;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Keep Desktop Layout Even in Mobile View */
@media screen and (max-width: 768px) {
    /* For small screens, we maintain the layout but adjust padding and font sizes */
    
    .container {
        width: 100%; /* Allow the container to take full width */
        padding: 10px; /* Reduce padding on mobile */
    }

    .navbar {
        padding: 15px; /* Adjust navbar padding for smaller screens */
    }

    .navbar nav a {
        font-size: 1.1rem; /* Adjust font size slightly smaller */
    }

    .hero {
        height: 100vh; /* Make the hero section take up the full screen */
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 2.5rem; /* Slightly smaller font size for mobile */
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2rem; /* Smaller font size for mobile */
        margin-bottom: 15px;
    }

    .cta-btn {
        font-size: 1rem; /* Smaller button text */
        padding: 10px 15px; /* Smaller button padding */
    }
}

/* Further styles for content sections or other areas */
.section {
    margin: 50px 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
