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

/* Brand Color Variables */
:root {
    --brand-dark-brown: #2B1B17;
    --brand-cream: #F7EAD9;
    --brand-teal: #19B2A6;
    --brand-hot-red: #E0434B;
    --brand-hot-pink: #FF4F8B;
    --brand-yellow: #F4D85A;
    --brand-bread-brown: #C07A36;
    --brand-bread-light: #F5C36A;
    --brand-hair-brown: #6B3F2C;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: var(--brand-cream);
    color: var(--brand-dark-brown);
    line-height: 1.6;
}

/* Retro Typography Classes */
.retro-title {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    text-shadow: 3px 3px 0px var(--brand-dark-brown);
    color: var(--brand-cream);
}

.retro-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--brand-hot-pink), var(--brand-teal));
    border-bottom: 4px solid var(--brand-yellow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 75px;
    box-shadow: 0 6px 20px rgba(255, 79, 139, 0.4);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1001;
}

.nav-logo .logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
}

.nav-logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-cream);
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 46px;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-cream);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link.active {
    color: var(--brand-yellow);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--brand-teal);
}

.dropdown {
    position: relative;
}

.chevron-down {
    font-size: 12px;
    margin-left: 8px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 31px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 206px;
    height: 45px;
    border: 2px solid var(--brand-teal);
    padding: 0 50px 0 17px;
    font-size: 16px;
    color: var(--brand-dark-brown);
    background-color: var(--brand-cream);
    border-radius: 8px;
}

.search-btn {
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #4A1D1F;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.profile-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.cart-container {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    font-size: 20px;
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    margin-top: 75px;
    position: relative;
    background: linear-gradient(45deg, var(--brand-teal), var(--brand-yellow), var(--brand-hot-pink), var(--brand-hot-red));
    background-size: 400% 400%;
    animation: retro-gradient 8s ease infinite;
    padding: 30px 0 100px;
    min-height: 600px;
    overflow: hidden;
}

@keyframes retro-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 93px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 530px;
    padding-top: 5px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--brand-cream);
    text-shadow: 4px 4px 0px var(--brand-dark-brown), 
                 8px 8px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 40px;
    transform: perspective(500px) rotateX(15deg);
}

.hero-description {
    font-family: 'Comfortaa', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--brand-dark-brown);
    background-color: rgba(247, 234, 217, 0.9);
    padding: 20px;
    border-radius: 12px;
    border: 3px solid var(--brand-dark-brown);
    line-height: 1.5;
    margin-bottom: 50px;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
}

.btn {
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'Righteous', cursive;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid var(--brand-dark-brown);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 5px 5px 0px var(--brand-dark-brown);
    transform: translateY(0px);
}

.btn:hover {
    transform: translateY(2px);
    box-shadow: 3px 3px 0px var(--brand-dark-brown);
}

.btn-primary {
    background-color: var(--brand-hot-pink);
    color: var(--brand-cream);
}

.btn-primary:hover {
    background-color: var(--brand-hot-red);
}

.btn-secondary {
    background-color: var(--brand-yellow);
    color: var(--brand-dark-brown);
    border: 1px solid #4A1D1F;
}

.btn-secondary:hover {
    background-color: #4A1D1F;
    color: #FBEDCD;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.hero-bg-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FBEDCD 0%, #F0E6C4 100%);
    opacity: 0.4;
    top: -100px;
    right: -200px;
    z-index: 1;
}

.cake-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

/* Image Carousel
.image-carousel {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(35.5px);
    border-radius: 100.5px;
    padding: 36px 48px;
    width: 965px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.carousel-images {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.carousel-images img {
    width: 230px;
    height: 129px;
    border-radius: 18px;
    box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-dots {
    color: #4A1D1F;
    font-size: 20px;
}

.carousel-counter {
    font-size: 18px;
    color: #4A1D1F;
    font-weight: 400;
} */

/* Best Selling Section */
.best-selling {
    padding: 30px 0 30px;
    background: linear-gradient(135deg, var(--brand-cream), var(--brand-yellow));
    position: relative;
    z-index: 1;
}

.best-selling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(25, 178, 166, 0.1) 10px,
        rgba(25, 178, 166, 0.1) 20px
    );
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.section-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 44px;
    font-weight: 400;
    color: var(--brand-hot-pink);
    text-shadow: 4px 4px 0px var(--brand-dark-brown), 
                 8px 8px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.48px;
    white-space: nowrap;
    transform: perspective(500px) rotateX(10deg);
}

.divider-line {
    width: 128px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-hot-pink), var(--brand-yellow));
    transform: rotate(90deg);
    border-radius: 2px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 22px;
    font-weight: 400;
    color: #272727;
    letter-spacing: 0.22px;
    line-height: 1.5;
    max-width: 673px;
}

.products-grid {
    display: flex;
    gap: 71px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 85px;
    margin-bottom: 50px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex-shrink: 0;
    width: 231px;
}

.product-card img {
    width: 100%;
    height: 328px;
    border-radius: 33px;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    margin-bottom: 24px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.22px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.rating-text {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    letter-spacing: 0.16px;
}

.view-more {
    text-align: center;
    padding: 0 85px;
}

/* Features Section */
.features {
    padding: 30px 0;
    background-color: #FFFFFF;
}

.feature-item {
    display: flex;
    gap: 44px;
    align-items: center;
    margin-bottom: 228px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width: 587px;
}

.feature-content h3 {
    font-size: 44px;
    font-weight: 500;
    color: #4A1D1F;
    line-height: 1.2;
    margin-bottom: 50px;
}

.feature-content p {
    font-size: 20px;
    font-weight: 400;
    color: #272727;
    line-height: 1.32;
    margin-bottom: 40px;
}

.read-more {
    color: #4A1D1F;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 107px;
    width: 48px;
    height: 1px;
    background-color: #4A1D1F;
}

.feature-image {
    flex: 1;
    max-width: 617px;
}

.feature-image img {
    width: 100%;
    height: 347px;
    border-radius: 47px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.16);
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 30px 0;
    background: linear-gradient(45deg, var(--brand-yellow), var(--brand-hot-pink));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 30deg,
        transparent 60deg
    );
    pointer-events: none;
}

.cta .container {
    text-align: center;
}

.cta h2 {
    font-family: 'Righteous', cursive;
    font-size: 40px;
    font-weight: 400;
    color: var(--brand-cream);
    text-shadow: 4px 4px 0px var(--brand-dark-brown), 
                 8px 8px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.72px;
    line-height: 44px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-dark-brown);
    background-color: rgba(247, 234, 217, 0.9);
    padding: 15px 25px;
    border-radius: 15px;
    border: 3px solid var(--brand-dark-brown);
    line-height: 1.35;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.cta .btn-primary {
    background-color: #4A1D1F;
    color: #F0FDF4;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
}

/* Testimonial Section */
.testimonial {
    padding: 30px 0;
    background: #F7F8F9;
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.testimonial .container {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    text-align: center;
    position: relative;
}

.quote-badge {
    background-color: #FBEDCD;
    color: #4A1D1F;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 36px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
}

.quote-mark {
    position: absolute;
    font-size: 98px;
    color: #E5E7EB;
    font-family: serif;
    line-height: 1;
}

.quote-mark.left {
    top: 20px;
    left: 207px;
}

.quote-mark.right {
    bottom: 200px;
    right: 90px;
    transform: rotate(180deg);
}

blockquote {
    font-size: 48px;
    font-weight: 600;
    color: #272727;
    letter-spacing: -0.96px;
    line-height: 60px;
    margin: 40px auto 80px;
    max-width: 977px;
}

.testimonial-author {
    margin-bottom: 30px;
}

.author-image {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.testimonial-author h4 {
    font-size: 24px;
    font-weight: 600;
    color: #4A1D1F;
    line-height: 32px;
    margin-bottom: 8px;
}

.testimonial-author p {
    font-size: 18px;
    font-weight: 500;
    color: #272727;
    line-height: 28px;
}

.testimonial-dots {
    font-size: 12px;
    color: #4A1D1F;
    letter-spacing: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-hot-pink));
    padding: 20px 0;
    border-top: 6px solid var(--brand-yellow);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.1) 15px,
        rgba(255, 255, 255, 0.1) 30px
    );
    pointer-events: none;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A1D1F;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.footer-nav {
    display: flex;
    gap: 48px;
}

.footer-nav a {
    color: var(--brand-cream);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-nav a:hover {
    color: var(--brand-yellow);
}

.footer-divider {
    border: none;
    height: 3px;
    background-color: var(--brand-teal);
    margin-bottom: 40px;
    border-radius: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-cream);
    line-height: 24px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    color: #4A1D1F;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 40px;
        gap: 30px;
    }
    
    .hero {
        padding: 20px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .products-grid {
        padding: 0 40px;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .container {
        padding: 0 40px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
    
    /* Hide non-essential nav items on tablets */
    .nav-right {
        display: none;
    }
    
    .hero {
        padding: 20px 0 60px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-image {
        padding-top: 10px;
    }
    
    .cake-image {
        max-width: 400px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .divider-line {
        transform: none;
        width: 80px;
    }
    
    .products-grid {
        padding: 0 30px;
        gap: 30px;
        justify-content: center;
    }
    
    .product-card {
        width: 200px;
    }
    
    .product-card img {
        height: 280px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-nav a {
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 12px;
    }
    
    .nav-logo .logo-image {
        height: 50px;
    }
    
    .hero {
        padding: 15px 0 50px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .cake-image {
        max-width: 300px;
    }
    
    .best-selling {
        padding: 25px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .products-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 25px;
    }
    
    .product-card {
        width: 280px;
        max-width: 100%;
    }
    
    .product-card img {
        height: 250px;
    }
    
    .product-info h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .cta {
        padding: 25px 0;
    }
    
    .cta h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .cta p {
        font-size: 14px;
        padding: 10px 15px;
        margin-bottom: 25px;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .footer-nav a {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 14px;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .product-card {
        width: 250px;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .cta h2 {
        font-size: 20px;
    }
    
    .nav-links {
        font-size: 11px;
        gap: 12px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
    display: block;
}

img:not([src]), img[src=""] {
    opacity: 0;
    background: #f0f0f0;
}

img[src]:not([src=""]) {
    opacity: 1;
}

/* Ensure images load properly */
img {
    max-width: 100%;
    height: auto;
}

.cake-image, .product-card img, .feature-image img {
    background: #f8f8f8;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cake-image::before, .product-card img::before, .feature-image img::before {
    content: '🍰';
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    z-index: -1;
}

/* Hover effects */
.product-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.product-card:hover img {
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-image:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.search-bar input:focus {
    outline: 2px solid #4A1D1F;
    outline-offset: 2px;
}

/* Image error handling and stability */
img {
    background-color: #f8f8f8;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f8f8f8" width="100" height="100"/><text y="50%" x="50%" dy="0.35em" text-anchor="middle" font-family="Arial" font-size="14" fill="%23999">🍰</text></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Animation for hero elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-description,
.hero-buttons {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}