/* Hero Section Styles */
:root {
    --hero-bg-color: #000929;
    --hero-text-color: #ffffff;
    --hero-accent-color: #f01543;
    --hero-secondary-color: #ffb800;
    --hero-gradient: linear-gradient(135deg, #000929 0%, #0a1445 100%);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: var(--hero-gradient);
    color: var(--hero-text-color);
    padding: 80px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 20, 69, 0.7) 0%, rgba(0, 9, 41, 0.9) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

/* Hero Text Styles */
.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--hero-secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--hero-accent-color);
    z-index: -1;
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-with-icon i {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--hero-accent-color);
    border-color: var(--hero-accent-color);
    box-shadow: 0 8px 15px rgba(240, 21, 67, 0.2);
}

.btn-primary:hover {
    background-color: #d01339;
    border-color: #d01339;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(240, 21, 67, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--hero-secondary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.food-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-food-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.food-decoration {
    position: absolute;
    border-radius: 50%;
    background-color: var(--hero-accent-color);
    opacity: 0.1;
    z-index: 1;
}

.food-decoration-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    background-color: var(--hero-accent-color);
    animation: pulse 8s ease-in-out infinite;
}

.food-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 15%;
    background-color: var(--hero-secondary-color);
    animation: pulse 6s ease-in-out infinite 1s;
}

.food-decoration-3 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 20%;
    background-color: #3498db;
    animation: pulse 7s ease-in-out infinite 0.5s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float-rotate 15s infinite linear;
}

.floating-element img {
    width: 80px;
    height: 80px;
    opacity: 0.1;
    filter: brightness(0) invert(1);
}

#element1 {
    top: 15%;
    left: 10%;
    font-size: 3rem;
    animation-duration: 20s;
}

#element2 {
    top: 60%;
    left: 15%;
    font-size: 2.5rem;
    animation-duration: 25s;
    animation-delay: 2s;
}

#element3 {
    top: 25%;
    right: 10%;
    font-size: 3.5rem;
    animation-duration: 18s;
    animation-delay: 1s;
}

#element4 {
    bottom: 20%;
    right: 15%;
    font-size: 2.8rem;
    animation-duration: 22s;
}

#element5 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 30s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes float-rotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .food-image-container {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 40px 0 30px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .food-image-container {
        height: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .food-image-container {
        height: 300px;
    }
}