/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.product-img {
    width: 100%;
    border-radius: 5px;
    border: 3px solid #0047AB;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #0047AB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.insta-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #0047AB;
    transition: transform 0.3s ease;
}

.insta-post:hover .insta-img {
    transform: scale(1.03);
}

/* Placeholder image styles */
.placeholder-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0047AB;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.placeholder-image.orange {
    background-color: #FFA500;
    border: 3px solid #0047AB;
}

/* Header styles */
header {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    background-color: #FFA500;
    color: #0047AB;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.8rem;
    border: 3px solid #0047AB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo.small {
    width: 80px;
    height: 80px;
    font-size: 1rem;
}

.header-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-cta {
    margin-top: 20px;
}

.instagram-btn {
    display: inline-block;
    background-color: #E1306C;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.followers {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Hero section */
#hero {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0047AB;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #FFA500;
    color: #0047AB;
}

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

.secondary-btn {
    background-color: #0047AB;
    color: white;
}

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

/* Products section */
#products {
    padding: 80px 0;
    background-color: #fff;
}

#products h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #0047AB;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.single-product {
    max-width: 600px;
    margin: 0 auto;
}

.product-btn {
    display: inline-block;
    margin-top: 15px;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 300px;
}

.heat-level {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.heat-level.mild {
    background-color: #4CAF50;
}

.heat-level.medium {
    background-color: #FF9800;
}

.heat-level.hot {
    background-color: #F44336;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #0047AB;
}

.product-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
}

/* Recipes section */
#recipes {
    padding: 80px 0;
    background-color: #f9f9f9;
}

#recipes h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0047AB;
}

.recipes-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
}

/* Tabs Navigation */
.recipes-tabs {
    max-width: 1000px;
    margin: 0 auto 50px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    background-color: #f0f0f0;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.tab-btn:hover {
    color: #0047AB;
    background-color: #f8f8f8;
}

.tab-btn.active {
    color: #0047AB;
    background-color: #fff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFA500;
}

/* Recipe Panels */
.recipes-content {
    position: relative;
    background-color: #fff;
}

.recipe-panel {
    display: none;
    padding: 0;
}

.recipe-panel.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modern Recipe Card */
.recipe-card-modern {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.recipe-image {
    height: 180px;
    background-color: #FFA500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-badge {
    font-size: 5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recipe-difficulty {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.recipe-difficulty.easy {
    background-color: #4CAF50;
}

.recipe-difficulty.medium {
    background-color: #FF9800;
}

.recipe-difficulty.hard {
    background-color: #F44336;
}

.recipe-details {
    padding: 25px;
}

.recipe-details h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #0047AB;
}

.recipe-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.recipe-meta i {
    color: #FFA500;
}

.recipe-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.ingredients-section h4, .instructions-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #0047AB;
    margin-bottom: 15px;
}

.ingredients-section ul {
    list-style: none;
    padding: 0;
}

.ingredients-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.ingredients-section li:before {
    content: "•";
    color: #FFA500;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.instructions-section ol {
    padding-left: 25px;
    counter-reset: item;
}

.instructions-section li {
    position: relative;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.recipe-action {
    text-align: center;
    margin-top: 10px;
}

.recipe-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 1rem;
}

.recipes-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipe-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
        min-width: auto;
    }
}

/* Instagram feed section */
#instagram-feed {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#instagram-feed h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0047AB;
}

.insta-handle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E1306C;
    font-weight: 600;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.insta-post {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insta-post .placeholder-image {
    height: 250px;
}

.insta-post:hover {
    transform: scale(1.03);
}

.insta-btn {
    margin-top: 20px;
}

/* Categories section */
#categories {
    padding: 80px 0;
    background-color: #fff;
}

#categories h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #0047AB;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    background-color: #FFA500;
    color: #0047AB;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.1rem;
}

/* About section */
#about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image .placeholder-image {
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0047AB;
}

.about-text p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0047AB;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FFA500;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFA500;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #FFA500;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E1306C;
    font-weight: 600;
    transition: color 0.3s ease;
}

.instagram-cta a:hover {
    color: #FFA500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .placeholder-image {
        height: 250px;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
    }
    
    .recipes-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .recipe-card {
        max-width: 100%;
    }
    
    .recipe-toggle {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}
