/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    //min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../sys-images/Hero_Background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 145px;
    height: calc(100vh - 145px);
}

/* Optional overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Anniversary Badge */
.anniversary-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.badge-image {
    width: 220px;
    height: 220px;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

/* Hero Title */
.hero-title {
    font-family: "MetricWeb-Medium", Arial, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: white;
    line-height: 1.05;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: "MetricWeb-Regular", Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: white;
    line-height: 1.45;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: "MetricWeb-Regular", Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Primary Button */
.btn-primary {
    background: #0078D4;
    color: white;
    border-color: #0078D4;
}

.btn-primary:hover {
    background: #005A9E;
    border-color: #005A9E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.4);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    z-index: 10;
}

.chevron-down {
    width: 60px;
    height: 60px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

@media (max-width: 1059px) {
    .hero {
        margin-top: 0;
        height: 100vh;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .anniversary-badge {
        top: 30px;
        left: 30px;
    }

    .badge-image {
        width: 180px;
        height: 180px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 20px;
    }

    .hero-content {
        padding: 0 15px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-subtitle br {
        display: none;
    }

    .anniversary-badge {
        top: 20px;
        left: 20px;
    }

    .badge-image {
        width: 140px;
        height: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 16px;
    }

    .chevron-down {
        width: 40px;
        height: 40px;
        border-left: 3px solid white;
        border-bottom: 3px solid white;
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .anniversary-badge {
        top: 15px;
        left: 15px;
    }

    .badge-image {
        width: 120px;
        height: 120px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 25px;
    }
}


.hero + .container-fluid.content {
    margin-top: 30px !important;
}