/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #ffa07a;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: white !important;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?w=1920') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff9c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    font-weight: 900;
    display: inline-block;
    position: relative;
    /* animation: glow 2s ease-in-out infinite alternate; */
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

.hero-section .lead {
    font-size: 24px;
    font-weight: 500;
    animation: fadeInUp 1.2s ease;
}

.hero-section p {
    font-size: 18px;
    animation: fadeInUp 1.4s ease;
}

.hero-buttons {
    animation: fadeInUp 1.6s ease;
}

.hero-image-container {
    animation: fadeInRight 1.5s ease;
}

.hero-image-container img {
    border: 5px solid rgba(255, 255, 255, 0.2);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.hero-image-container img:hover {
    transform: rotate(0deg) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-2);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.about-image-grid img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.testimonials-section .section-title {
    color: white;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    color: var(--dark-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stars i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Menu Section */
.menu-section {
    background: #f8f9fa;
}

.btn-filter {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.menu-section .text-center.mb-5 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.menu-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    flex-shrink: 0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    background-color: #f0f0f0;
    min-height: 280px;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.view-btn {
    background: white !important;
    color: var(--primary-color) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.view-btn:hover::before {
    left: 0;
}

.view-btn:hover {
    color: white !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 87, 108, 0.4) !important;
}

.view-btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.view-btn:hover i {
    transform: scale(1.2);
}

.menu-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-content h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--dark-color);
}

.menu-content .text-muted {
    margin-top: 8px;
    flex-grow: 1;
    line-height: 1.6;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
}

.menu-grid {
    margin-top: 30px;
    min-height: 600px;
}

/* Pagination Styles */
.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 5px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
}

/* Product Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-2);
    color: white;
    padding: 20px 30px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    box-shadow: var(--shadow);
}

.modal-body .badge {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
}

#modalName {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-color);
}

#modalDescription {
    line-height: 1.8;
    font-size: 16px;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-2);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.team-content h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-control {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 20px;
}

.footer h4,
.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .navbar-collapse {
        background: rgba(44, 62, 80, 0.98);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section .lead {
        font-size: 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-filter {
        padding: 8px 16px;
        font-size: 13px;
        margin: 4px;
    }
    
    .menu-image {
        height: 220px;
    }
    
    .menu-content h5 {
        font-size: 16px;
    }
    
    .price {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .btn-filter {
        padding: 9px 18px;
        font-size: 13px;
    }
}
