/* Reset default margins and ensure full height */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero section with blurred background */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('background2.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Apply blur effect to background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(2px); /* Adjust blur intensity */
    z-index: 1;
}

#email-link {
    color: white; /* Sets the text color to white */
    text-decoration: none; /* Optional: Removes the underline */
}
#email-link:hover {
    color: #f0f0f0; /* Optional: Slightly lighter white on hover for visual feedback */
}

/* Content overlay */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Call-to-action button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    .content p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
