/* Modern Ice Cream Shop Styles */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --text-color: #2D3436;
    --light-bg: #F7F9FC;
    --background-color: #fff;
    --font-primary: 'Poppins', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 60px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 1.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-order {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero .btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Featured Flavors */
.featured-flavors {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.featured-flavors h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
}

.flavor-card {
    text-align: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-5px);
}

.flavor-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.flavor-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.flavor-card p {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #A8E6CF 100%);
    color: white;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
}

.feature {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1.1rem;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFE66D 0%, #FFF3A3 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    border: none;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: var(--text-color);
    color: white;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer p {
    color: #999;
    margin-bottom: 0.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Product Cards for Order Page */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 1rem;
    color: var(--text-color);
}

.product-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 1rem 1rem;
}

.product-card.small {
    margin-bottom: 1rem;
}

.product-card.small img {
    height: 150px;
}

.product-card.small .product-info {
    padding: 1rem;
}

.product-card.small h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-card.small p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-card.small .price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-card.small .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item h4 {
    margin: 0;
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity {
    min-width: 2rem;
    text-align: center;
}

.cart-item-price {
    font-weight: 500;
    margin: 0 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-summary {
        margin-top: 2rem;
        position: static;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

header {
  font-family: "Madimi One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
}

.nice {
  font-size: 1.5rem;
}
