/* ===================== Hero Section ===================== */

/* Main Hero Section Styling */
header {
    background: linear-gradient(180deg, #696a6b 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    min-height: 100vh; /* Full screen height */
    box-sizing: border-box;
}

/* Hero Container */
header .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
    width: 100%;
    max-width: 800px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

/* Hover effect to scale up the image */
.hero-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Background gradient overlay */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #f1f1f1;
    padding: 40px 20px;
    max-width: 800px;
    box-sizing: border-box;
}

/* Hero Title */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s ease, color 0.5s ease;
    word-wrap: break-word;
}

/* Hero Text */
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.6rem);
    margin: 20px 0;
    line-height: 1.6;
    opacity: 0.9;
    transition: opacity 0.5s ease;
}

/* Call to Action Button */
.hero-content .cta-button {
    background-color: #fff;
    color: #1e90ff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Call to Action Hover Effect */
.hero-content .cta-button:hover {
    background: linear-gradient(145deg, #e8c940, #f7b733);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}

.hero-content p:hover {
    opacity: 1;
}


/* ===================== Responsive Hero Section ===================== */

/* Tablets */
@media (max-width: 1024px) {
    header {
        padding: 60px 15px;
    }

    .hero-content {
        padding: 30px 10px;
    }

    .hero-image {
        max-width: 600px;
    }

    .hero-content .cta-button {
        padding: 12px 24px;
        font-size: 1em;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    header {
        padding: 50px 10px;
    }

    .hero-content {
        padding: 25px 10px;
    }

    .hero-image {
        max-width: 400px;
    }

    .hero-content .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    header {
        padding: 40px 10px;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-content .cta-button {
        padding: 8px 16px;
        font-size: 0.8em;
    }
}

/* Mini Mobile Devices */
@media (max-width: 320px) {
    header {
        padding: 30px 8px;
    }

    .hero-image {
        max-width: 240px;
    }

    .hero-content .cta-button {
        padding: 6px 12px;
        font-size: 0.7em;
    }
}
