/* Sweet Turkish Desserts Website */
/* Completely new design - sweet, appetizing aesthetic */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream-pink: #FFE5E8;
    --soft-rose: #FFB3BA;
    --vanilla: #FFF4E6;
    --honey: #FFEAA7;
    --caramel: #D4A574;
    --chocolate: #8B4513;
    --mint-cream: #F0FFF4;
    --lavender: #E6E6FA;
    --peach: #FFE5B4;
    --text-brown: #5D4037;
    --text-dark: #3E2723;
    --shadow-soft: rgba(139, 69, 19, 0.15);
    --shadow-sweet: rgba(255, 179, 186, 0.3);
    --font-sweet: 'Dancing Script', 'Brush Script MT', cursive;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-brown);
    background: linear-gradient(135deg, var(--cream-pink) 0%, var(--vanilla) 50%, var(--mint-cream) 100%);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* Decorative background elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--soft-rose) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    animation: floatSweet 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--honey) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
    animation: floatSweet 25s ease-in-out infinite reverse;
}

@keyframes floatSweet {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header - Sweet & Curved */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 32px var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-header.scrolled {
    border-radius: 0 0 30px 30px;
    box-shadow: 0 12px 40px var(--shadow-sweet);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    font-family: var(--font-sweet);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--chocolate);
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-rose), var(--honey));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    width: 55px;
    height: 55px;
    filter: drop-shadow(0 4px 8px var(--shadow-soft));
    animation: rotateSweet 15s linear infinite;
}

@keyframes rotateSweet {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-brown);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    transform: translateY(-3px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--chocolate);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero - Sweet & Playful */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-sweet);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--chocolate);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0 var(--soft-rose), 6px 6px 0 var(--honey);
    opacity: 0;
    animation: bounceIn 1s ease-out 0.3s forwards;
    transform: scale(0.5);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
    }
    50% {
        transform: scale(1.1) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--text-brown);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 4rem;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow-sweet);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-sweet);
}

/* Decorative floating sweets */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-sweet {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    opacity: 0.6;
    filter: blur(2px);
    animation: floatAround 15s ease-in-out infinite;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, -150px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, 50px) rotate(270deg);
    }
}

/* Gallery - Sweet Cards */
.gallery-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.section-title {
    font-family: var(--font-sweet);
    font-size: clamp(3rem, 6vw, 5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--chocolate);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before,
.section-title::after {
    content: '✧';
    font-size: 2rem;
    color: var(--soft-rose);
    margin: 0 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 20px var(--shadow-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-sweet);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 69, 19, 0.95), transparent);
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-sweet);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Features - Sweet Bubbles */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--peach) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--soft-rose) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 70px var(--shadow-sweet);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-soft);
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-icon svg {
    width: 60%;
    height: 60%;
    color: white;
}

.feature-card h3 {
    font-family: var(--font-sweet);
    font-size: 2rem;
    color: var(--chocolate);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-brown);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Page Header - Sweet Gradient */
.page-header {
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--honey) 50%, var(--lavender) 100%);
    padding: 160px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.5;
    animation: sparkle 3s ease-in-out infinite;
}

.page-title {
    font-family: var(--font-sweet);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Timeline - Sweet Swirls */
.history-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.6);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--soft-rose), var(--honey), var(--lavender));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 5px 15px var(--shadow-soft);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-content h3 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Ingredients - Sweet Pills */
.ingredients-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--vanilla) 0%, var(--cream-pink) 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.ingredient-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--soft-rose);
    box-shadow: 0 25px 60px var(--shadow-sweet);
}

.ingredient-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--honey), var(--caramel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px var(--shadow-soft);
}

.ingredient-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.ingredient-card h3 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Tips - Sweet Notes */
.tips-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.7);
}

.tips-list {
    max-width: 1000px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.4s ease;
}

.tip-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px var(--shadow-sweet);
}

.tip-number {
    font-family: var(--font-sweet);
    font-size: 5rem;
    color: var(--soft-rose);
    font-weight: 700;
    min-width: 120px;
    line-height: 1;
    opacity: 0.8;
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 15px;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: linear-gradient(135deg, var(--lavender), var(--peach));
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.4s ease;
}

.tip-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px var(--shadow-sweet);
}

.tip-card h4 {
    color: var(--chocolate);
    margin-bottom: 12px;
    font-family: var(--font-sweet);
    font-size: 1.5rem;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.technique-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.technique-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px var(--shadow-sweet);
}

.technique-card h3 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 20px;
    font-size: 2rem;
}

/* FAQ - Sweet Accordion */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--mint-cream) 0%, var(--cream-pink) 100%);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px var(--shadow-sweet);
}

.faq-question {
    width: 100%;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--honey), var(--caramel));
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: white;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 30px 40px;
    color: var(--text-brown);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About - Sweet Story */
.about-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.8);
}

.about-text h2 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 3rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px var(--shadow-sweet);
}

.value-item h3 {
    font-family: var(--font-sweet);
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.95);
}

.story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--peach) 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px var(--shadow-soft);
}

.story-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-brown);
}

.heritage-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.6);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.heritage-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border-top: 5px solid var(--soft-rose);
    transition: all 0.4s ease;
}

.heritage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-sweet);
    border-top-color: var(--honey);
}

.heritage-card h3 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Contact */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--vanilla) 0%, var(--cream-pink) 100%);
}

.contact-info h2 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-bottom: 25px;
    font-size: 3rem;
}

.contact-details {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px var(--shadow-sweet);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px var(--shadow-soft);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.contact-item h3 {
    color: var(--chocolate);
    margin-bottom: 8px;
    font-family: var(--font-sweet);
    font-size: 1.8rem;
}

/* Privacy Form - Sweet Style */
.privacy-section {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.8);
}

.privacy-text h2 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 3rem;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text ul {
    margin-left: 40px;
    margin-bottom: 30px;
}

.privacy-text li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-brown);
    font-size: 1.1rem;
}

.contact-form-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--lavender), var(--peach));
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px var(--shadow-soft);
}

.contact-form-section h2 {
    font-family: var(--font-sweet);
    color: var(--chocolate);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.privacy-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--chocolate);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid var(--soft-rose);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: var(--text-brown);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--honey);
    box-shadow: 0 0 0 4px rgba(255, 179, 186, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.checkbox-label span {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-brown);
}

.checkbox-label a {
    color: var(--chocolate);
    text-decoration: underline;
    font-weight: 600;
}

.submit-button {
    background: linear-gradient(135deg, var(--soft-rose), var(--honey));
    color: white;
    padding: 1.5rem 5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px var(--shadow-sweet);
    font-family: var(--font-body);
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-sweet);
}

/* Footer - Sweet Bottom */
.main-footer {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--text-dark) 100%);
    color: var(--vanilla);
    padding: 80px 0 40px;
    border-radius: 60px 60px 0 0;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: var(--font-sweet);
    margin-bottom: 25px;
    color: var(--honey);
    font-size: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 244, 230, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: var(--honey);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 244, 230, 0.2);
    color: rgba(255, 244, 230, 0.7);
    font-size: 1rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .logo {
        font-size: 1.6rem;
        gap: 0.8rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 230, 0.98));
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        padding: 100px 20px 40px;
        gap: 0.5rem;
        box-shadow: 0 10px 40px var(--shadow-soft);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 20px;
        margin: 0.3rem 0;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 4px 15px var(--shadow-soft);
    }

    .nav-menu a::before {
        border-radius: 20px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--shadow-sweet);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        animation: fadeInOverlay 0.3s ease;
    }

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
        gap: 0.6rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-menu {
        padding: 85px 15px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-menu a {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        margin: 0.25rem 0;
    }

    .mobile-menu-toggle {
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 2.5px;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem);
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 1.3rem 3rem;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }

    .cta-button {
        padding: 1rem 3rem;
        font-size: 1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-content::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-overlay {
        padding: 20px 15px 15px;
    }

    .gallery-overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }

    .contact-form-section {
        padding: 40px 25px;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 3rem;
    }

    .page-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }

    .page-subtitle {
        font-size: clamp(1rem, 2vw, 1.4rem);
    }

    .page-header {
        padding: 120px 0 70px;
        border-radius: 0 0 40px 40px;
    }
}
