/* =========================================
   HERO SECTION REDESIGN - MATCHING REFERENCE
   ========================================= */

/* Hero Section Container */
.sgn-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Full viewport height */
    background: #ffffff;
    /* White background */
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* 
   Background Decorative Shapes 
   Matches the Red (bottom-left) and Yellow (top-right) blobs 
*/

.sgn-hero-blob {
    position: absolute;
    z-index: 0;
}

/* Red Blob - Bottom Left */
.sgn-hero-blob-red {
    bottom: -10%;
    left: -5%;
    width: 25vw;
    height: 25vw;
    max-width: 350px;
    max-height: 350px;
    background-color: #00D162;
    /* Coral Red */
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-15deg);
    animation: sgn-blob-red-float 10s ease-in-out infinite alternate;
}

@keyframes sgn-blob-red-float {
    0% {
        transform: translate(0, 0) rotate(-15deg);
    }

    100% {
        transform: translate(30px, -20px) rotate(-10deg);
    }
}



/* Yellow Blob - Top Right */
.sgn-hero-blob-yellow {
    top: -5%;
    right: -2%;
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background-color: #FDE306;
    /* Bright Yellow */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(10deg);
    animation: sgn-blob-yellow-float 12s ease-in-out infinite alternate-reverse;
}

/* Content Wrapper */
.sgn-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

/* Subheading / Date Line */
.sgn-hero-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

/* Main Heading */
.sgn-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    /* Reduced weight for cleaner look */
    line-height: 1.3;
    color: #000000;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Added spacing for 'new' alignment feel */
}

/* Highlighting specific words isn't in the reference image design (it's all black), 
   but keeping the class just in case. */
.sgn-hero-highlight {
    color: #000;
}

/* Description Text */
.sgn-hero-desc {
    font-size: 1rem;
    color: #444;
    /* Dark grey for readability on red/white */
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Button Group */
.sgn-hero-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.sgn-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    cursor: pointer;
}

/* Green Button "LEARN MORE" */
.sgn-btn-green {
    background-color: #4caf50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sgn-btn-green:hover {
    background-color: #388e3c;
    color: #fff;
    transform: translateY(-2px);
}

/* Red Button "SEE EVENT" */
.sgn-btn-red {
    background-color: #e53935;
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.sgn-btn-red:hover {
    background-color: #c62828;
    color: #fff;
    transform: translateY(-2px);
}

/* Right Side Image */
.sgn-hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sgn-hero-main-img {
    width: 85%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    /* Circle shape */
    border: 10px solid #fff;
    /* Thick white border often seen in these designs */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animations - Subtle */
.sgn-animate-fade {
    animation: sgn-fadeIn 1s ease-out forwards;
    opacity: 0;
}

.sgn-delay-1 {
    animation-delay: 0.2s;
}

.sgn-delay-2 {
    animation-delay: 0.4s;
}

.sgn-delay-3 {
    animation-delay: 0.6s;
}

@keyframes sgn-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes sgn-blob-yellow-float {
    0% {
        transform: translate(0, 0) rotate(10deg);
    }

    100% {
        transform: translate(-30px, 20px) rotate(15deg);
    }
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .sgn-hero-section {
        flex-direction: column-reverse;
        /* Stack image on top or bottom? */
        /* Design usually has image on top or stacked. Let's stack vertically. */
        padding: 50px 0;
        height: auto;
        min-height: auto;
        text-align: left;
    }

    .sgn-hero-content {
        padding: 40px 20px;
        text-align: center;
    }

    .sgn-hero-blob-red {
        width: 100vw;
        height: 60vh;
        bottom: 0;
        left: 0;
        border-radius: 50% 50% 0 0;
        transform: none;
    }

    .sgn-hero-blob-yellow {
        width: 80vw;
        height: 80vw;
        top: -10%;
        right: -20%;
    }

    .sgn-hero-title {
        font-size: 2.5rem;
    }

    .sgn-hero-desc {
        margin: 0 auto 30px;
    }

    .sgn-hero-btns {
        justify-content: center;
    }

    .sgn-hero-image-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    .sgn-hero-title {
        font-size: 1.8rem;
    }

    .sgn-hero-blob-red {
        height: 50vh;
    }
}