/* Global Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: url('../assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

/* Overlay to Improve Readability */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5); /* Subtle dark overlay */
    z-index: -1;
}

/* Header Section */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

header h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ffcc00;
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffd633;
}

/* Sections */
section {
    padding: 60px 20px;
}

.container {
    max-width: 800px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    color: #ffcc00;
}

footer {
    background: #111;
    padding: 20px;
    font-size: 0.9rem;
}
