/* c:\xampp\htdocs\delhi-house-new\css\home-redesign.css */

/* General Body Styles */
body {
    /* font-family: 'Poppins', sans-serif; */
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section-new {
    position: relative;
    height: 80vh;
    background: url('/images/banner-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-in-out;
}

.hero-title-new {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.hero-subtitle-new {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Section Styles */
.section-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle-new {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Welcome Section */
.welcome-section-new {
    padding: 6rem 0;
}

.welcome-section-new .img-fluid {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Special Dishes Section */
.specials-section-new {
    padding: 6rem 0;
    background-color: #fff;
}

.dish-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.dish-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.dish-card .card-body {
    padding: 1.5rem;
}

.dish-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features Section */
.features-section-new {
    padding: 6rem 0;
}

.feature-item {
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-new {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Testimonials Section */
.testimonials-section-new {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonial-card-new {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.testimonial-stars-new {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section-new {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/banner-3.jpg') no-repeat center center/cover;
    color: white;
}

.cta-title-new {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
