/* Enhanced Typography */
body {
    font-size: 20px;
    line-height: 1.7;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
}

/* Larger Recipe Cards */
.recipe-card {
    padding: 40px;
    margin-bottom: 50px;
}

.recipe-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.recipe-content ul, 
.recipe-content ol {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.recipe-content li {
    margin-bottom: 12px;
}

.recipe-tips {
    padding: 30px;
}

.recipe-tips h4 {
    font-size: 1.8rem;
}

/* Larger Category Cards */
.category-card {
    padding: 30px;
}

.category-card h3 {
    font-size: 2rem;
}

.category-card ul li a {
    font-size: 1.2rem;
    padding: 12px 0;
}

/* Increased Spacing */
section {
    padding: 100px 0;
}

.container {
    padding: 0 30px;
}

/* Larger Buttons */
.btn {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Larger Form Elements */
.newsletter input,
.newsletter button {
    padding: 25px 30px;
    font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .recipe-card {
        padding: 30px;
    }
    
    .recipe-card h3 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .recipe-card {
        padding: 25px;
    }
}

:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    --secondary: #2C3E50;
    --accent: #E74C3C;
    --light: #FDF5E6;
    --dark: #2C3E50;
    --gray: #95A5A6;
    --light-gray: #ECF0F1;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-tagline {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 8px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    transform: skewY(-2deg);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0 15px;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

/* Recipe Categories */
.recipe-categories {
    padding: 100px 0;
    background-color: white;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.category-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-card-header {
    background-color: var(--primary);
    color: white;
    padding: 25px;
}

.category-card-header h3 {
    color: white;
    margin-bottom: 0;
    border-bottom: none;
    font-size: 1.8rem;
}

.category-card-body {
    padding: 30px;
}

.category-card ul {
    list-style: none;
}

.category-card ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.category-card ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-card ul li a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.category-card ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.category-card ul li a i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Featured Recipes */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 3px;
}

.featured-recipes {
    padding: 100px 0;
    background-color: var(--light);
}

.recipe-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.recipe-tab {
    padding: 15px 30px;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.recipe-tab.active,
.recipe-tab:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 50px;
}

.recipe-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recipe-card-header {
    padding: 30px 30px 0;
}

.recipe-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.recipe-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-meta i {
    color: var(--primary);
    font-size: 1.2rem;
}

.recipe-card-body {
    padding: 0 30px 30px;
}

.recipe-content h4 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--primary);
}

.recipe-content ul, 
.recipe-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.recipe-content li {
    margin-bottom: 12px;
}

.recipe-tips {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border-left: 5px solid var(--primary);
}

.recipe-tips h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.recipe-tips h4 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.recipe-tips ul {
    padding-left: 25px;
}

.recipe-tips li {
    margin-bottom: 10px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--secondary) 0%, #34495E 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.newsletter:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--light);
    transform: skewY(-2deg);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter input {
    padding: 20px 25px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 70%;
    font-size: 1.2rem;
    outline: none;
    font-family: var(--font-main);
}

.newsletter button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.newsletter button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 100px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--secondary);
    transform: skewY(-2deg);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-about h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.footer-about p {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--primary);
    background-color: white;
    transform: translateY(-3px);
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.footer-links ul li a i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gray);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.copyright a {
    color: var(--light-gray);
    text-decoration: underline;
}

.copyright a:hover {
    color: white;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: white; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .recipe-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 2rem; }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 25px;
        box-shadow: var(--shadow-md);
    }
    
    nav ul.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        margin: 10px 0;
        width: 100%;
        max-width: 350px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 15px;
    }
    
    .newsletter button {
        width: 100%;
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}