

/* Subheading Styling */
.subheading1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f5b754; /* Accent color */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Main Title Styling */
.section-title2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff; /* White */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Unique Button Wrapper */
.unique-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Unique Simple White Button Styling */
.unique-simple-white-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif; /* Modern and clean font */
    font-size: 1.2rem; /* Font size for text */
    font-weight: 600; /* Semi-bold text */
    text-transform: uppercase; /* Capital letters */
    color: #fff; /* White text */
    border: 2px solid #fff; /* White border */
    background-color: transparent; /* Transparent background */
    padding: 12px 30px; /* Adjust padding for proper alignment */
    text-decoration: none; /* Remove underline */
    border-radius: 0; /* No rounded corners */
    letter-spacing: 2px; /* Add spacing between letters */
    line-height: 1; /* Ensure proper line height */
    box-sizing: border-box; /* Ensure proper sizing */
}

/* Ensure no unexpected background or conflicts */
.unique-button-wrapper {
    background: none; /* Remove any parent background color */
}



/* Header Bottom Section */
.header-bottom {
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    width: 100%;
    text-align: center;
}

/* Welcome Text Styling */
.welcome-text {
    font-family: 'Montserrat', sans-serif; /* Modern font */
    font-size: 1rem; /* Smaller font size */
    font-weight: 400; /* Normal weight */
    color: #fff; /* White text */
    text-transform: uppercase; /* Uppercase letters */
    letter-spacing: 1px; /* Slight spacing for modern look */
    padding: 10px 20px; /* Add padding around text */
    display: inline-block; /* Inline-block for precise size */
    border-radius: 5px; /* Add slight rounding to background */
}


















/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    background-color: #000;
}

/* Add animation to the welcome text */
.welcome-text {
    font-size: 2rem; /* Adjust size */
    font-weight: 600; /* Slightly bold */
    letter-spacing: 2px; /* Add spacing */
    text-transform: uppercase;
    color: #ffffff; /* White text */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow for readability */
    margin-bottom: 20px; /* Space below text */
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Slide in from the bottom */
    animation: fadeInSlideUp 1s ease-in-out forwards; /* Apply animation */
}

/* Keyframes for the animation */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Initial position */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Final position */
    }
}


/* Button Styling */
.modern-button {
    display: inline-block;
    padding: 10px 30px; /* Adjust padding */
    font-size: 1rem; /* Font size */
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff; /* White border */
    border-radius: 5px; /* Subtle rounding */
    text-decoration: none; /* Remove underline */
    transition: all 0.3s ease; /* Smooth animation */
}

/* Button Hover Effect */
.modern-button:hover {
    background-color: #fff; /* Add white background */
    color: #000; /* Switch text to black */
    transform: scale(1.05); /* Slight scaling effect */
}

/* Button Wrapper for Centering */
.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

