:root {
    --light-pink: #FFB6C1;
    --dark-pink: #C71585;
    --dark-blue: #1A237E;
    --light-pink-rgb: 255, 182, 193;
    --dark-pink-rgb: 199, 21, 133;
    --dark-blue-rgb: 26, 35, 126;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFF5F7;
    color: #333;
}

/* Navigation */
#mainNav {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #283593 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#mainNav .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-pink) !important;
    letter-spacing: 0.5px;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

#mainNav .nav-link:hover {
    color: var(--light-pink) !important;
    background-color: rgba(255,255,255,0.1);
}

#mainNav .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 182, 193, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-pink) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,182,193,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-custom {
    background-color: var(--light-pink);
    color: var(--dark-blue);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background-color: white;
    color: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    border: 2px solid var(--light-pink);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background-color: var(--light-pink);
    color: var(--dark-blue);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,182,193,0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(199,21,133,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--dark-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title .subtitle {
    color: var(--dark-pink);
    font-weight: 500;
    font-size: 1.1rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category-title {
    color: var(--dark-pink);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--light-pink);
    display: inline-block;
}

.menu-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--dark-pink);
}

.menu-item:hover {
    box-shadow: 0 6px 24px rgba(199,21,133,0.12);
    transform: translateX(4px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.menu-item-price {
    font-weight: 700;
    color: var(--dark-pink);
    font-size: 1.2rem;
}

.menu-item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #FFF5F7 0%, white 100%);
    padding: 5rem 0;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-content h2 {
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Locations Section */
.location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26,35,126,0.12);
}

.location-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--dark-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.location-info {
    padding: 1.5rem;
}

.location-info h4 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.location-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.location-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-open {
    background-color: #E8F5E9;
    color: #2E7D32;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-control {
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--dark-pink);
    box-shadow: 0 0 0 0.2rem rgba(199,21,133,0.15);
}

.form-label {
    color: var(--dark-blue);
    font-weight: 600;
}

.btn-submit {
    background: linear-gradient(135deg, var(--dark-pink) 0%, var(--dark-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199,21,133,0.3);
    color: white;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #283593 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--light-pink);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    color: var(--light-pink);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Footer */
#mainFooter {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0D1642 100%);
    color: rgba(255,255,255,0.8);
}

#mainFooter h5 {
    color: var(--light-pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

#mainFooter p {
    color: rgba(255,255,255,0.7);
}

#mainFooter .border-top {
    border-color: rgba(255,182,193,0.2) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-pink) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--dark-pink) 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--dark-blue);
    font-weight: 700;
}

.testimonial-rating {
    color: #FFB300;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page transitions */
.page-content {
    animation: fadeInUp 0.4s ease;
}