/* Soups Page Styles - Warm & Cozy Theme */

:root {
    --soup-primary: #FF9F66;
    --soup-secondary: #FFA07A;
    --soup-accent: #8B4513;
    --soup-light: #FFF8DC;
    --soup-dark: #5D4037;
    --soup-cream: #FFFAF0;
    --soup-warm: #D2691E;
}

/* Hero Section */
.soup-hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--soup-primary) 0%, var(--soup-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(139,69,19,0.1)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

/* Steam Animation */
.steam-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.steam {
    width: 8px;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
    animation: steam-rise 3s ease-in-out infinite;
    opacity: 0;
}

.steam:nth-child(1) {
    animation-delay: 0s;
}

.steam:nth-child(2) {
    animation-delay: 1s;
}

.steam:nth-child(3) {
    animation-delay: 2s;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-80px) scale(1.5);
        opacity: 0;
    }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    padding: 18px 35px;
    background: var(--soup-accent);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--soup-dark);
}

/* Featured Carousel */
.featured-carousel {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.featured-card {
    width: 200px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-10px);
}

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

.featured-info {
    padding: 15px;
}

.featured-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--soup-dark);
}

.featured-info .time {
    font-size: 0.9rem;
    color: var(--soup-primary);
}

/* Soup Categories */
.soup-categories {
    padding: 120px 0 80px;
    background: var(--soup-cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--soup-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--category-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--category-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--soup-dark);
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

.category-btn {
    padding: 12px 30px;
    background: var(--category-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Soup by Mood */
.soup-by-mood {
    padding: 80px 0;
    background: white;
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mood-card {
    background: linear-gradient(135deg, var(--mood-color), transparent);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--mood-color);
}

.mood-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mood-icon {
    font-size: 3rem;
    color: var(--mood-color);
    margin-bottom: 15px;
}

.mood-card h3 {
    font-size: 1.2rem;
    color: var(--soup-dark);
    margin-bottom: 10px;
}

.mood-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Build Your Soup */
.build-soup {
    padding: 80px 0;
    background: var(--soup-light);
}

.build-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.build-step {
    margin-bottom: 50px;
}

.build-step h3 {
    font-size: 1.5rem;
    color: var(--soup-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--soup-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.option-card {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.option-card:hover {
    border-color: var(--soup-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-card i {
    font-size: 2.5rem;
    color: var(--soup-primary);
    margin-bottom: 10px;
}

.option-card span {
    display: block;
    font-size: 0.95rem;
    color: var(--soup-dark);
    font-weight: 500;
}

.find-recipe-btn {
    display: block;
    margin: 50px auto 0;
    padding: 18px 50px;
    background: var(--soup-accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.find-recipe-btn:hover {
    background: var(--soup-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Global Soups */
.global-soups {
    padding: 80px 0;
    background: white;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-card {
    background: var(--soup-cream);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.global-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.global-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.global-card h3 {
    font-size: 1.2rem;
    color: var(--soup-dark);
    margin-bottom: 8px;
}

.global-card p {
    color: #666;
    margin-bottom: 20px;
}

.explore-btn {
    padding: 10px 25px;
    background: var(--soup-primary);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.explore-btn:hover {
    background: var(--soup-accent);
}

/* Chef Picks */
.chef-picks {
    padding: 80px 0;
    background: var(--soup-light);
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.chef-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.chef-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--soup-primary);
}

.chef-card h3 {
    font-size: 1.3rem;
    color: var(--soup-dark);
    margin-bottom: 8px;
}

.chef-specialty {
    color: var(--soup-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.chef-tip {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* Healthy Tips */
.healthy-tips {
    padding: 80px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tip-card {
    background: var(--soup-cream);
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tip-icon {
    font-size: 3rem;
    color: var(--soup-primary);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    color: var(--soup-dark);
    margin-bottom: 12px;
}

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

/* Quick & Slow Soups */
.quick-slow-soups {
    padding: 80px 0;
    background: var(--soup-light);
}

.quick-slow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-slow-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.quick-slow-card.slow {
    border-left: 5px solid var(--soup-accent);
}

.quick-slow-card.quick {
    border-left: 5px solid #FFD93D;
}

.quick-slow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-slow-card i {
    font-size: 3rem;
    color: var(--soup-primary);
    margin-bottom: 15px;
}

.quick-slow-card h3 {
    font-size: 1.2rem;
    color: var(--soup-dark);
    margin-bottom: 15px;
}

.time-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--soup-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Trending Soups */
.trending-soups {
    padding: 80px 0;
    background: white;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trending-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.trending-info {
    padding: 20px;
}

.trending-info h3 {
    font-size: 1.2rem;
    color: var(--soup-dark);
    margin-bottom: 12px;
}

.meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.meta i {
    color: var(--soup-primary);
}

/* All Soups */
.all-soups {
    padding: 80px 0;
    background: var(--soup-cream);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.recipe-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.save-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.save-btn:hover {
    background: var(--soup-primary);
    color: white;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    font-size: 1.3rem;
    color: var(--soup-dark);
    margin-bottom: 12px;
}

.recipe-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.recipe-meta i {
    color: var(--soup-primary);
}

.view-recipe-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--soup-accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.view-recipe-btn:hover {
    background: var(--soup-dark);
    transform: scale(1.05);
}

/* Floating Button */
.floating-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--soup-accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.floating-top-btn:hover {
    background: var(--soup-dark);
    transform: translateY(-5px);
}

.floating-top-btn i {
    font-size: 1.5rem;
}

.floating-top-btn span {
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .featured-carousel {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .mood-grid,
    .global-grid,
    .chefs-grid,
    .tips-grid,
    .quick-slow-grid,
    .trending-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
