/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --accent-color: #f4a261;
    --text-dark: #3d2817;
    --text-light: #6b4e3d;
    --bg-light: #faf8f5;
    --bg-cream: #fff8f0;
    --wood-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><rect width="200" height="200" fill="%23d4a574"/><path d="M0 100 Q50 80 100 100 T200 100" stroke="%23b8956a" stroke-width="2" fill="none" opacity="0.3"/></svg>');
    --ceramic-shadow: 0 8px 16px rgba(139, 111, 71, 0.15);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.main-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    box-shadow: var(--ceramic-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Buttons */
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Intro Section */
.intro-section {
    padding: 4rem 2rem;
    background: var(--bg-cream);
    margin: 3rem 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Recipes Preview */
.recipes-preview {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    transform: rotate(1deg);
}

.recipe-card:nth-child(even) {
    transform: rotate(-1deg);
}

.recipe-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 111, 71, 0.25);
}

.recipe-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recipe-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.recipe-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.recipe-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recipe-link:hover {
    color: var(--secondary-color);
}

/* Secrets Section */
.secrets-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
    margin: 3rem 0;
}

.secrets-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.secrets-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.secrets-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.secrets-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.secrets-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.secrets-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quote Section */
.quote-section {
    padding: 4rem 2rem;
    background: var(--bg-cream);
    margin: 3rem 0;
}

.quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: white;
    border-radius: 10px;
    box-shadow: var(--ceramic-shadow);
}

.quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

/* Page Header */
.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Recipe Detail */
.recipe-detail {
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.recipe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.recipe-layout.reverse {
    direction: rtl;
}

.recipe-layout.reverse > * {
    direction: ltr;
}

.recipe-image-large {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
}

.recipe-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.recipe-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.recipe-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    padding: 0.5rem 1rem;
    background: var(--bg-cream);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.ingredients,
.instructions {
    margin-bottom: 2rem;
}

.ingredients h3,
.instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.ingredients ul,
.instructions ol {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.ingredients li,
.instructions li {
    margin-bottom: 0.5rem;
}

.recipe-tip {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.recipe-tip p {
    color: var(--text-dark);
    margin: 0;
}

/* Secrets Content Section */
.secrets-content-section {
    padding: 3rem 2rem;
}

.secret-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.secret-item.reverse {
    direction: rtl;
}

.secret-item.reverse > * {
    direction: ltr;
}

.secret-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
}

.secret-image img {
    width: 100%;
    height: auto;
    display: block;
}

.secret-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.secret-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* About Content */
.about-content {
    padding: 3rem 2rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ceramic-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-mission,
.about-story {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission h2,
.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-mission p,
.about-story p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-values {
    margin-bottom: 3rem;
}

.about-values h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--ceramic-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Forms */
.contact-form-wrapper,
.privacy-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--ceramic-shadow);
}

.privacy-form-section {
    margin-top: 3rem;
}

.privacy-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.privacy-form-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

/* Privacy Content */
.privacy-content {
    padding: 3rem 2rem;
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.privacy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.privacy-text h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.privacy-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--text-dark) 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section,
    .secrets-section .container,
    .recipe-layout,
    .secret-item,
    .about-intro,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .recipe-image-large {
        position: static;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        justify-content: center;
    }
}

