/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Arial', sans-serif;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #ffffff;
    position: relative;
}

/* Dark Overlay for Background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for mysterious effect */
    z-index: 1;
}

/* Ensure content stays above overlay */
header, main, footer {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #444;
}

/* Logo Styling */
.logo {
    filter: brightness(1.2); /* Slightly brighten logo for contrast */
}

/* Main Content Styling */
.main-content {
    min-height: calc(100vh - 140px); /* Adjust based on header/footer height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.main-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.main-content .btn-outline-light {
    border-width: 2px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.main-content .btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Footer Styling */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #444;
}

.footer p {
    font-size: 0.9rem;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2.5rem;
    }

    .main-content p {
        font-size: 1rem;
    }

    .logo {
        max-height: 60px;
    }
}