/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-dark: #8b6508;
    --cream: #fdf8ef;
    --cream-dark: #f5e6c8;
    --brown: #3e2723;
    --brown-light: #5d4037;
    --text: #2c1810;
    --text-light: #6d4c41;
    --white: #ffffff;
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 248, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(253, 248, 239, 0.98); box-shadow: var(--shadow); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 75px; }
.nav-logo img { height: 50px; transition: var(--transition); }
.nav-logo:hover img { transform: scale(1.05); }
.nav-menu { display: flex; list-style: none; gap: 8px; }
.nav-link {
    text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem;
    padding: 8px 16px; border-radius: 8px; transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(184, 134, 11, 0.08); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brown); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2c1810 0%, #3e2723 30%, #5d4037 60%, #4e342e 100%);
    overflow: hidden; text-align: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 800px; }
.hero-badge {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: rgba(184, 134, 11, 0.2); border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--gold-light); font-size: 0.9rem; font-weight: 500;
    margin-bottom: 32px; animation: fadeInUp 0.8s ease;
}
.hero-title {
    font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700; color: var(--white); line-height: 1.2;
    margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.8;
    margin-bottom: 40px; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1rem;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.8rem; animation: bounce 2s infinite;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.4); border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg); }

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: 0.9rem; color: var(--gold);
    font-weight: 600; margin-bottom: 12px; letter-spacing: 0.5px;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--brown); margin-bottom: 12px;
}
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto 16px; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 16px auto 0; border-radius: 2px; }

/* ===== STORY ===== */
.story { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 350px 1fr; gap: 60px; align-items: center; }
.story-image-wrapper { position: relative; }
.story-image-frame {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    border: 4px solid rgba(184, 134, 11, 0.2); position: relative;
}
.story-image-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.2), transparent 40%);
}
.story-image { width: 100%; display: block; aspect-ratio: 1; object-fit: cover; }
.story-name-badge {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); padding: 10px 28px; border-radius: 50px;
    text-align: center; box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    white-space: nowrap;
}
.badge-name { font-weight: 700; display: block; font-size: 1rem; }
.badge-title { font-size: 0.8rem; opacity: 0.85; }
.story-quote {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic;
    color: var(--brown); line-height: 1.8; padding: 24px 0 24px 24px;
    border-left: 3px solid var(--gold); margin-bottom: 24px;
}
.story-text { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.story-highlight {
    display: flex; gap: 20px; align-items: flex-start; padding: 24px;
    background: var(--cream); border-radius: var(--radius);
    border: 1px solid rgba(184, 134, 11, 0.15);
}
.highlight-icon { font-size: 2rem; flex-shrink: 0; }
.highlight-text h3 { font-family: 'Playfair Display', serif; color: var(--brown); margin-bottom: 8px; font-size: 1.15rem; }
.highlight-text p { font-size: 0.95rem; color: var(--text-light); }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: var(--cream); }
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
    border: 1px solid rgba(184, 134, 11, 0.08);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.35), transparent 50%);
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-img::after { opacity: 1; }
.product-info { padding: 16px 20px; text-align: center; }
.product-name {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    font-weight: 600; color: var(--brown);
}

/* ===== ANADOLU ===== */
.anadolu { padding: 100px 0; background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.anadolu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px; margin-bottom: 48px;
}
.anadolu-card {
    background: var(--white); border-radius: var(--radius); padding: 32px 24px;
    border: 1px solid rgba(184, 134, 11, 0.1); transition: var(--transition);
    text-align: center;
}
.anadolu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.anadolu-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.anadolu-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown);
    margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--cream-dark);
}
.anadolu-card ul { list-style: none; }
.anadolu-card li {
    padding: 6px 0; font-size: 0.95rem; color: var(--text-light);
    border-bottom: 1px solid rgba(184, 134, 11, 0.05);
}
.anadolu-card li:last-child { border-bottom: none; }
.anadolu-quote {
    text-align: center; padding: 40px; background: linear-gradient(135deg, var(--brown), var(--brown-light));
    border-radius: var(--radius); color: var(--white);
}
.anadolu-quote p { font-family: 'Playfair Display', serif; font-size: 1.3rem; line-height: 1.8; }
.anadolu-quote strong { color: var(--gold-light); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.contact-card {
    background: var(--white); border-radius: var(--radius); padding: 36px 24px;
    text-align: center; border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition); position: relative;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: var(--gold);
}
.whatsapp-icon { background: linear-gradient(135deg, #25d366, #128c7e); color: var(--white); }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--brown); margin-bottom: 12px; }
.contact-card p { color: var(--text-light); font-size: 0.95rem; }
.contact-card a { color: var(--gold); text-decoration: none; transition: var(--transition); }
.contact-card a:hover { color: var(--gold-dark); }
.contact-link { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 0.9rem; }
.contact-badge {
    position: absolute; top: 16px; right: 16px;
    background: #25d366; color: var(--white); padding: 4px 12px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ===== FOOTER ===== */
.footer { background: var(--brown); padding: 60px 0 30px; color: rgba(255,255,255,0.7); }
.footer-content { text-align: center; }
.footer-logo img { height: 50px; margin-bottom: 16px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 24px; color: var(--gold-light); }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); margin: 24px auto; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }
.footer-credit { font-size: 0.8rem; opacity: 0.5; margin-top: 8px; }
.footer-credit a { color: var(--gold-light); text-decoration: none; font-weight: 600; transition: var(--transition); }
.footer-credit a:hover { color: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px; background: none; border: none;
    color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 10;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); transform: rotate(90deg); }
.lightbox-content { text-align: center; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-caption { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-top: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image-wrapper { max-width: 320px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
}

@media (max-width: 768px) {
    .nav-container { height: 65px; padding: 0 16px; }
    .nav-logo img { height: 38px; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-menu {
        position: fixed; top: 65px; left: 0; right: 0;
        background: rgba(253, 248, 239, 0.98); flex-direction: column;
        padding: 20px 16px; gap: 4px; transform: translateY(-120%);
        transition: var(--transition); box-shadow: var(--shadow);
        z-index: 1000;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-link { padding: 12px 16px; font-size: 1rem; width: 100%; display: block; }
    .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(5px, -5px); }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .anadolu-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .story { padding: 60px 0; }
    .products { padding: 60px 0; }
    .anadolu { padding: 60px 0; }
    .contact { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .anadolu-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
