/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    text-align: center;
}

/* Container */
.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Header */
header {
    background: white;
    padding: 1px 2px;
    color: #5D00A3;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 100px; 
    display: block;
}

nav ul {
    list-style: none;
    padding: 20px;
    margin: 20px;
    display: flex;
    gap: 20px; 
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #5D00A3; 
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8301ab; /* Gold color on hover for attraction */
}

/* Hero Section with Background Banner */
.hero {
    background: url('banner.jpeg') no-repeat center center/cover;
    height: 600px; /* Increased height for better visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 20px;
    position: relative;
    margin-top: 80px; /* Prevents header from overlapping */
}

/* Dark overlay to improve text visibility */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay for better readability */
    z-index: 1;
}

/* Ensure text is above overlay */
.hero h1, .hero p {
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
    background: white;
    border-radius: 12px;
    margin: 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-section h2 {
    font-size: 2em;
    color: #5D00A3;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    text-align: center;
}

form label {
    font-weight: bold;
    margin-top: 10px;
}

form input, form textarea {
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #5D00A3;
    outline: none;
}

button {
    background: #5D00A3;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

button:hover {
    background: #8301AB;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    form {
        width: 100%;
    }
}