* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #f5e6d3;
    --color-secondary: #e8d5c4;
    --color-accent: #d4a574;
    --color-text: #5a4a3a;
    --color-text-light: #8b7a6a;
    --color-white: #ffffff;
    --color-pastel-pink: #f8e8e8;
    --color-pastel-blue: #e8f0f5;
    --color-pastel-green: #e8f5e8;
    --color-pastel-yellow: #faf5e8;
    --shadow-light: 0 2px 10px rgba(90, 74, 58, 0.1);
    --shadow-medium: 0 4px 20px rgba(90, 74, 58, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-white) 100%);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 3rem;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.nav {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: var(--transition);
    border-radius: 8px;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: calc(100% - 3rem);
}

.nav-menu a:hover {
    color: var(--color-accent);
    background: var(--color-primary);
}

.nav-menu a.active {
    color: var(--color-accent);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pastel-pink) 0%, var(--color-pastel-yellow) 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--color-pastel-blue);
    opacity: 0.3;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    font-size: 1.1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-pastel-green) 0%, var(--color-pastel-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* Intro Section */
.intro-section {
    padding: 4rem 2rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-pastel-yellow);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 2rem;
}

.gallery-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(90, 74, 58, 0.9), transparent);
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Interactive Gallery */
.interactive-gallery {
    padding: 4rem 2rem;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item-large {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.gallery-item-large:hover {
    box-shadow: 0 8px 30px rgba(90, 74, 58, 0.2);
}

.gallery-item-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-content {
    padding: 2.5rem;
}

.gallery-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.dessert-history,
.dessert-details {
    margin-bottom: 2rem;
}

.dessert-history h3,
.dessert-details h3 {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 400;
}

.dessert-history p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.dessert-details ul {
    list-style: none;
    padding-left: 0;
}

.dessert-details li {
    color: var(--color-text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.dessert-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
}

/* Ingredients Section */
.ingredients-section {
    padding: 4rem 2rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ingredient-card {
    background: var(--color-pastel-pink);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--color-pastel-blue);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.ingredient-card h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.ingredient-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.ingredients-info {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.ingredients-info h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.ingredients-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Techniques Section */
.techniques-section {
    padding: 4rem 2rem;
}

.technique-item {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.technique-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.technique-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.technique-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.technique-steps {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.technique-steps li {
    color: var(--color-text-light);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-secondary);
}

.technique-steps li:last-child {
    border-bottom: none;
}

.technique-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Events Section */
.events-section {
    padding: 4rem 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--color-pastel-green);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--color-pastel-yellow);
}

.event-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.event-location {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.event-description {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-period {
    color: var(--color-text);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-secondary);
}

.events-info {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.events-info h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.events-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.about-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-weight: 300;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-secondary);
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 400;
}

.contact-details h3:first-child {
    margin-top: 0;
}

.contact-details p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-accent);
}

.contact-note h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-note p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-note a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Privacy Section */
.privacy-section {
    padding: 4rem 2rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 300;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-form-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-accent);
}

.privacy-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-secondary);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--color-text-light);
    line-height: 1.6;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: var(--color-pastel-green);
    color: var(--color-text);
    display: block;
}

.form-message.error {
    background: var(--color-pastel-pink);
    color: var(--color-text);
    display: block;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-secondary);
    text-align: center;
}

.privacy-footer p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 0;
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 8px;
        white-space: normal;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        background: var(--color-primary);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-item-large img {
        height: 250px;
    }

    .gallery-content {
        padding: 1.5rem;
    }

    .about-content,
    .contact-content,
    .privacy-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .features-grid,
    .gallery-grid,
    .ingredients-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
}

