/* General Body Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* Hero Section Container */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1;
}

/* Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styling */
.logo {
    width: 100px; /* Adjust size as needed */
    margin-bottom: 1rem;
}

/* Academy Name Styling */
.academy-name {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Main Heading Styling */
h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem; /* Large font size */
    font-weight: 700;
    margin: 0.5rem 0 2rem 0; /* Top, Right, Bottom, Left */
}

/* "TAKE A TOUR" Button Styling */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f0e6d2; /* A warm, paper-like color */
    color: #333; /* Dark text color */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ffffff; /* Brighter on hover */
    transform: translateY(-3px); /* Lifts the button slightly */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .academy-name {
        font-size: 0.8rem;
    }
}