/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Utilities */
.full-width {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

    .btn-orange:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        color: white;
    }

/* Hero Section (Fixed Full-Width Background with Animation) */
.hero-section {
    width: 100vw;
    max-width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color:orangered;
    background: linear-gradient(135deg, rgba(250, 235, 215, 0.95), rgba(245, 245, 220, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FAEBD7" width="1200" height="600"/><polygon fill="%23F5F5DC" points="0,600 1200,0 1200,600"/></svg>');
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: bgSlideshow 18s infinite;
        z-index: 1;
        opacity: 0.7;
    }

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: white;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        animation: fadeInUp 1s ease-out;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-content .btn {
        animation: fadeInUp 1s ease-out 0.4s both;
        font-size: 1.1rem;
    }

/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border-radius: 2px;
    }

/* Menu Section */
#menu {
    background: #f8f9fa;
}

.menu-categories {
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-item {
    transition: transform 0.3s ease;
}

    .menu-item:hover {
        transform: translateY(-5px);
    }

/* Card Layout */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .card:hover {
        box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }

/* Image area fixed ratio */
.card-img-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

    .card-img-container img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

/* About Section */
#about {
    background: white;
}

.about-stats {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

    .about-stats h5 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Services Section */
#service {
    background: #f8f9fa;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-size: 1.5rem;
}

/* Reviews Section */
#reviews {
    background: linear-gradient(135deg, #FAEBD7, #F5F5DC);
    color: #333;
}

    #reviews .section-title::after {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
    }

.review-card {
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,107,53,0.2);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    color: #333;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

    .review-card:hover {
        transform: translateY(-5px);
    }

.star-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    background: #333;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

    .contact-info h4 {
        color: #ff6b35;
        margin-bottom: 1rem;
    }

    .contact-info a {
        color: #ff6b35;
        text-decoration: none;
        font-weight: 600;
    }

        .contact-info a:hover {
            color: #f7931e;
        }

/* Slider */

/* Fade-in effect */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }

        .menu-categories .btn {
            margin-bottom: 0.5rem;
            width: 200px;
        }

    .dot {
        height: 20px;
        width: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .menu-categories .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

#sliderImage {
    transition: opacity 1s ease-in-out;
    opacity: 1;
    border-radius: 50%;
}

    #sliderImage.fade-out {
        opacity: 0;
    }


.round-image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .round-image:hover {
        transform: scale(1.1);
    }

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    max-height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.animated-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05) translateX(30px);
    transition: all 1s ease;
    border-radius: 15px;
}

    .animated-slider.visible {
        opacity: 1;
        transform: scale(1) translateX(0);
    }

.dot {
    height: 14px;
    width: 14px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .dot.active {
        background-color: orangered;
        transform: scale(1.3);
    }



/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
    