/* Hero section styling */
.hero {
    position: relative;
    height: calc(100vh - 100px - 23px); /* Total height minus header and footer heights */
    display: flex;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* Makes the image fit more of the space by zooming out */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0; /* Place image behind text */
}

.hero-text {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    color: #ffffff;
}

.hero h1 {
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #555;
}