/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border_box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a; /* Fallback color */
}

/* Hero Section - Full Screen Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    
    /* REPLACE 'background.jpg' WITH YOUR IMAGE */
    background-image: url('../images/1920x1080-PXL_20240917_223255969.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay to make text readable on top of images */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity (0.4) as needed */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Logo Styling */
.logo {
    max-width: 250px; /* Adjust based on your logo size */
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
.tagline {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sub-tagline {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Footer Styling */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }
    .sub-tagline {
        font-size: 1rem;
    }
    .logo {
        max-width: 180px;
    }
}