/* --- Header Styles --- */
header { /* This targets your <header id="hero"> */
    background-image: url('water-drops-texture-background-blue-design.jpg'); /* Path to your image */
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    color: white; /* Keep text white, or adjust if droplets are light */
    padding: clamp(1.25rem, 5vw, 2.5rem); /* 20px -> 40px */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ensure header content is above the overlay */
header .container {
    position: relative; /* Or any element containing your h1, p, button */
    z-index: 2;
}

#logo {
    max-height: clamp(18.75rem, 40vw, 31.25rem); /* 300px -> 500px */
    width: auto; /* Maintains the aspect ratio */
    margin-bottom: 10px; /* Adds some space below the logo */

}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3rem); /* Fluid font size */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

}

header p {
    font-size: clamp(1rem, 3vw, 1.2rem); /* Fluid font size */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffc107; /* Bright yellow/orange for CTA */
    color: var(--primary-color);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem); /* Fluid padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.1rem); /* Fluid font size */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

/* --- Footer Styles --- */
footer {
    padding: clamp(1.5rem, 5vw, 2rem) clamp(1rem, 5vw, 1.25rem); /* Fluid padding */
    background: #333;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: clamp(1rem, 4vw, 1.25rem); /* Fluid gap */
    text-align: center;
}

.footer-contact p, .footer-links p {
    margin: 5px 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #007bff;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Fluid icon size */
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #007bff;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: clamp(0.8rem, 2vw, 0.9rem); /* Fluid font size */
    color: #ccc;
}