:root {
    --primary: #2c7a7b;
    --primary-dark: #1d6d6e;
    --secondary: #c05621;
    --accent: #e6a04e;
    --text: #2d3748;
    --text-light: #4a5568;
    --bg: #fff9f5;
    --bg-light: #fff5ee;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBvcGFjaXR5PSIwLjA1Ij48cGF0dGVybiBpZD0icGF0dGVybi1iYXNlIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMzUpIHNjYWxlKDAuMDUpIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ2YXIoLS1iZykjIi8+PHBhdGggZD0iTS0xLjY3IDI0Qy0yLjUyIDI0LTMuMjQgMjMuNDgtMy40NCAyMi42Nkw0LjE2IDEyLjA4QzQuNjQgMTEuODQgNS4yIDExLjg4IDUuNjQgMTIuMjRMMjYuNCAxMy44OEMyNi44OCAxNC4zNiAyNi44OCAxNS4xNiAyNi40IDE1LjY0TDE2Ljk2IDIzLjMyTDIxLjUyIDI3Ljg4QzIxLjg0IDI4LjE2IDIyLjA4IDI4LjU2IDIyLjA4IDI5LjA0QzIyLjA4IDI5LjUyIDIxLjg0IDI5LjkyIDIxLjUyIDMwLjJMNS4yIDQxLjZDNC44OCA0MS44NCA0LjQ4IDQyIDQuMDggNDJDMy4yOCA0MiAyLjY0IDQxLjM2IDIuNjQgNDAuNTZWMzEuOTJDLTIuMTYgMjguNzIgLTAuMjMgMjQgLTEuNjcgMjRaIiBmaWxsPSJ2YXIoLS1wcmltYXJ5KSNmZmYiIG9wYWNpdHk9IjAuMiIvPjwvcGF0dGVybj48L3N2Zz4=');
    background-attachment: fixed;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.domain {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
    font-weight: 500;
    display: inline-block;
    background: rgba(44, 122, 123, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.25rem;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

/* Active nav link */
nav a.active {
    color: var(--primary);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .hero-content {
        text-align: left;
        padding-right: 2rem;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-image {
        margin: 0;
        height: 350px; /* Slightly smaller on tablet */
    }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
    .hero-image {
        height: 450px; /* Taller on desktop */
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-image {
        height: 300px; /* Slightly shorter on mobile */
        margin: 1rem auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

.hero-content {
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
        padding: 0 2rem 0 0;
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(44, 122, 123, 0.2);
    z-index: -1;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero p {
    font-size: 1.2rem;
    color: #444;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 992px) {
    .hero p {
        margin: 0 0 2.5rem;
        padding-right: 2rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 122, 123, 0.3);
}

.cta-button.secondary:hover {
    background: var(--bg-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover::after {
    opacity: 1;
}

/* Base image styles */
img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero image container */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 2rem auto;
    padding: 0 1rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.hero-shape-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* About Section */
.about {
    padding: 3rem 2rem 4rem;
    margin: 1rem auto;
    max-width: 1100px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.about-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Modern Recipe Section */
.recipe {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
    margin: 4rem auto;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.recipe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.recipe-title {
    font-size: 2.25rem;
    color: var(--primary);
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 800px;
    position: relative;
    display: block;
}

.recipe-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.recipe-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: block;
}

.recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.recipe-ingredients {
    padding: 2.5rem;
    background: white;
}

.recipe-steps {
    padding: 2.5rem;
    background: #faf7f5;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.recipe-section-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recipe-section-title i {
    color: var(--accent);
}

.ingredient-list {
    list-style: none;
}

.ingredient-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-amount {
    font-weight: 600;
    color: var(--primary);
    min-width: 100px;
    margin-right: 1rem;
}

.ingredient-name {
    flex: 1;
    color: var(--text);
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
}

.step-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    counter-increment: step-counter;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.recipe-notes {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,249,245,0.9) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    border-left: 4px solid var(--accent);
}

.recipe-notes h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-notes p {
    margin: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.recipe-notes p::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe {
        padding: 3rem 1.5rem;
        margin: 2rem 1rem;
        border-radius: 12px;
    }
    
    .recipe-header h2 {
        font-size: 1.75rem;
    }
    
    .recipe-steps {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
}

@media (max-width: 768px) {
    .recipe-header h2 {
        font-size: 1.75rem;
    }
    
    .recipe-ingredients,
    .recipe-steps {
        padding: 2rem 1.5rem;
    }
}

/* Tradition Section */
.tradition {
    padding: 4rem 2rem;
    background-color: #f8f3f0;
    margin: 3rem auto;
    border-radius: 12px;
    max-width: 1100px;
}

.tradition-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem auto 0;
    padding: 0;
}

.tradition-text {
    padding: 0.5rem 0;
}

.tradition-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text);
}

.tradition-image {
    margin: 2rem auto;
    max-width: 600px;
    padding: 0 1rem;
}

.tradition-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Recipe Images */
.recipe-image {
    margin: 1.5rem 0;
}

.recipe-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 1rem 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature.reverse {
    flex-direction: row-reverse;
    transform: translateX(20px);
}

.feature.reverse.animate {
    transform: translateX(0);
}

.feature-content {
    flex: 1;
}

.feature h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.feature p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image i {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
    transition: var(--transition);
}

.feature:hover .feature-image i {
    transform: scale(1.05);
    opacity: 1;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 16px;
    margin: 4rem 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .cta-button {
    background: white;
    color: var(--primary);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 4rem 2rem;
        gap: 4rem;
    }
    
    .hero-container {
        padding: 4rem;
    }
}

.hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 2.75rem;
}

.hero p {
    margin-left: auto;
    margin-right: auto;
}

.email-preview {
    margin: 0 auto;
}

.feature, .feature.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.feature p {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .hero h2 {
        font-size: 2.25rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .email-preview {
        margin: 0 auto;
    }

    .feature, .feature.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .feature p {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav {
        display: flex;
        gap: 1.5rem;
    }

    nav a {
        margin: 0;
    }

    .hero h2 {
        font-size: 2.25rem;
    }

    .feature-image i {
        font-size: 6rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .cta {
        padding: 4rem 1.5rem;
        margin: 2rem -1.5rem;
        border-radius: 0;
    }

    .cta h2 {
        font-size: 1.75rem;
    }
}
