/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 20px 40px;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

header nav {
    font-size: 16px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

header nav a:hover {
    background-color: #ffd700; /* Gold color on hover */
    color: #333;
}

/* Hero Section Styles */
.banner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/assets/images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: black;
    text-align: center;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black; /* Text color set to black */
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: black; /* Text color set to black */
}

.btn-login {
    padding: 15px 30px;
    background-color: #ffd700;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-login:hover {
    background-color: #ffb700; /* Darker gold on hover */
}

/* Main Content Section Styles */
.main-content {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.feature {
    width: 30%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* More pronounced hover effect */
}

.feature h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    font-size: 16px;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links nav a:hover {
    color: #ffd700;
}

.social-media {
    margin-bottom: 30px;
}

.social-media a {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}

.social-media img {
    width: 30px;
    height: auto;
}

.footer-bottom {
    font-size: 14px;
    color: #bbb;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        margin-bottom: 10px;
    }

    header nav {
        margin-top: 10px;
    }

    header nav a {
        margin-left: 15px;
        margin-right: 15px;
        font-size: 14px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        margin-bottom: 20px;
    }

    .social-media img {
        width: 25px;
    }

    footer nav a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
