
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

.foodbuffet-hero {
    position: relative;
    width: 100%;
    height:90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "Clarity City", sans-serif;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    color: #E51E2A;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    font-family: "Noto Sans", sans-serif;
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #D72522;
}

.hero-subtitle::before {
    left: -60px;
}

.hero-subtitle::after {
    right: -60px;
}

.hero-title {
    color: #ffffff;
    font-size: 78px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 35px 0;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    font-family: "Clarity City", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 55px 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: "Noto Sans", sans-serif;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
background: #E51E2A;
    color: #ffffff;
}



.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #D72522;
    color: #D72522;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 30, 42, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: bounce 2.5s infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator:hover {
    border-color: #D72522;
    color: #D72522;
    background: rgba(215, 37, 34, 0.1);
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 10px 25px rgba(215, 37, 34, 0.3);
}

.scroll-indicator::after {
    content: '↓';
    font-size: 20px;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 65px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .foodbuffet-hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 52px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 45px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 30px;
    }
    
    .hero-subtitle::before {
        left: -45px;
    }
    
    .hero-subtitle::after {
        right: -45px;
    }
    
    .hero-buttons {
        gap: 20px;
    }
    
    .btn {
        padding: 18px 40px;
        font-size: 14px;
    }
    
    .scroll-indicator {
        bottom: 25px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .foodbuffet-hero {
        min-height: 550px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 14px;
        padding-top:15px;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 35px;
        font-size: 13px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-indicator::after {
        font-size: 18px;
    }
}


[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}


.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E51E2A, transparent);
    opacity: 0.7;
}


@keyframes shimmer {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }
}

.hero-title::after {
    animation: shimmer 3s ease-in-out infinite;
}