:root {
    --primary-color: #2d5a87;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --info-color: #3498db;
    --warning-color: #f1c40f;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Poppins', sans-serif;
    
    --border-radius: 0.75rem;
    --border-radius-lg: 1.25rem;
    --shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    z-index: 1030;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    line-height: 1;
    transition: var(--transition);
}

.navbar-brand:hover .brand-text {
    color: var(--secondary-color);
}

.navbar-brand .brand-tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    border-radius: 25px;
    margin: 0 0.25rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(45, 90, 135, 0.1);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-hero-primary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    border: 3px solid white;
    color: white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Innovation Section */
.innovation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.innovation-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Recipe Cards */
.recipes-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.recipe-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.recipe-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.15);
}

.recipe-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.recipe-meta {
    display: flex;
    justify-content: between;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--warning-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--warning-color);
    margin-top: 0.25rem;
}

.contact-details h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--warning-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: white;
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    color: white;
    outline: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 80px 0 40px;
}

.footer h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color);
}

.input-group {
    margin-top: 1rem;
}

.input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group .btn {
    border: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
    z-index: 1040;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

.cookie-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.cookie-link:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Blog Specific Styles */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 135, 0.8), rgba(243, 156, 18, 0.6));
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.article-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-image img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.article-content {
    padding: 100px 0;
}

.blog-article {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.blog-article p {
    margin-bottom: 2rem;
}

.article-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 4rem;
    position: relative;
}

.article-intro::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
}

/* Utility Classes */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-body);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 135, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: #e67e22;
    border-color: #e67e22;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--warning-color);
    color: var(--dark-color);
    border-color: var(--warning-color);
}

.btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.text-dark {
    color: var(--dark-color) !important;
}

.text-white {
    color: white !important;
}

/* Spacing Utilities */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title,
    .article-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .innovation-card,
    .contact-card,
    .benefit-card {
        padding: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-heading {
        font-size: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .blog-article {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.6rem;
    }
    
    .innovation-icon,
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .innovation-section,
    .benefits-section,
    .recipes-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .article-content {
        padding: 80px 0;
    }
    
    .article-header {
        padding: 120px 0 60px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Focus States */
.btn:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 135, 0.25);
}

/* Loading States */
.btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}