
:root {
    --primary-red: #7a0000;
    --accent-gold: #f8d54b;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --card-bg: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
}

/* Custom Navbar */
.navbar-custom {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(165, 21, 26, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent-gold) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link.active {
    color: var(--accent-gold) !important;

    box-shadow: 0 2px 8px rgba(255, 253, 128, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.btn-signup {
    background: var(--accent-gold);
    color: var(--dark-bg) !important;
    font-weight: 600;
    border-radius: 25px;
    padding: 8px 25px;
    border: none;
}

.btn-signup:hover {
    background: var(--primary-red);
    font-weight: 600 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(151, 16, 20, 0.4)), 
                url('../images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    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;
}

.primary-btn {
    background: var(--accent-gold);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: var(--primary-red);
    color: #fff;
    font-weight: 600 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 193, 115, 0.4) !important;
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Why Choose Section */
.why-choose {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 193, 115, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 193, 115, 0.2);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Featured Restaurants */
.featured-restaurants {
    padding: 50px 0;
    background: var(--primary-red);
}

.restaurant-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 470px;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.restaurant-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.restaurant-content {
    padding: 25px;
    color: var(--white);
}

.restaurant-content h5 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.restaurant-cuisine {
    background: rgba(255, 252, 103, 0.1);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}


.restaurant-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.restaurant-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-gold);
    font-weight: 600;
}

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-view-menu {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-menu:hover {
    background: var(--accent-gold);
    color: var(--primary-red);
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 600 !important;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(151, 16, 20, 0.6)), 
                url('https://images.unsplash.com/photo-1600891964092-4316c288032e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 10px;
    text-align: center;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, var(--dark-bg) 100%);
}

.testimonials h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 2.5rem;
}

.testimonials .lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--accent-gold);
    margin: 20px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(247, 193, 115, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: auto;
    font-size: 0.9rem;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

/* Swiper Container */
.testimonials-swiper {
    width: 100%;
    padding-bottom: 50px !important;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
    text-align: center;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(247, 193, 115, 0.3) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(247, 193, 115, 0.5);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-gold) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(42, 42, 42, 0.9) !important;
    border-radius: 50% !important;
    margin-top: -25px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(42, 42, 42, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(247, 193, 115, 0.3);
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next {
    right: 10px !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 330px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .primary-btn, .btn-outline-custom {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin: 10px;
        padding: 30px 20px;
        height: 260px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-top: 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .testimonials-swiper {
        padding: 20px 10px 60px !important;
    }

    .testimonial-card {
        margin: 5px;
        padding: 25px 15px;
        height: 240px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}


/* Hero Section */
.about-hero {
    padding-top: 170px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(151, 16, 20, 0.5)), 
                url('../images/bg-img1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Sections */
.about-section {
    padding: 50px 0;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #2a2a2a 0%, var(--dark-bg) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 25px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* How It Works Section */
.how-it-works {
    background: var(--primary-red);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.step-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(247, 193, 115, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.benefit-description {
    line-height: 1.7;
    opacity: 0.9;
}

.benefit-list {
    list-style: none;
    margin-top: 15px;
}

.benefit-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(151, 16, 20, 0.6)), 
                url('../images/cta-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .lead {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        padding: 30px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}