﻿.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/angel-hero2.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

.hero-section .container {
    --bs-gutter-x: 1rem; /* Smaller horizontal padding */
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* For mobile, make it even smaller */
@media (max-width: 768px) {
    .hero-section .container {
        --bs-gutter-x: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-width: 2px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #2c5aa0;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

    .hero-buttons .btn-primary:hover {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        color: #1e3f73;
    }

.hero-buttons .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

    .hero-buttons .btn-outline-light:hover {
        background-color: #ffffff;
        color: #2c5aa0;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

.hero-location-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333 !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    backdrop-filter: blur(10px);
}

    .hero-location-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: #333 !important;
        text-decoration: none;
    }

.hero-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

    .feature-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
        width: 30px;
    }

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

    .floating-card .card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        max-width: 350px;
    }

.promotion-highlight {
    margin-top: 1rem;
}

    .promotion-highlight .badge {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.5rem !important;
        border-radius: 50px;
        font-weight: 600;
    }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .scroll-down:hover {
        opacity: 1;
        color: white;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }

        .hero-buttons .btn:last-child {
            margin-bottom: 0;
        }

    .hero-location-btn {
        width: 100%;
        max-width: 330px;
    }

    .floating-card .card {
        max-width: 300px;
        margin-top: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-features .row {
        justify-content: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-location-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .floating-card .card {
        max-width: 280px;
    }

    .hero-content {
        padding: 1rem 0;
    }
}
