/* =============================================
   MODA ATELIER - Beyaz Elegant Tema
   ============================================= */

:root {
    --primary: #1a1a1a;
    --accent: #b8860b;
    --accent-light: #d4a843;
    --accent-bg: rgba(184, 134, 11, 0.08);
    --dark: #111111;
    --gray-900: #222222;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --sale: #c0392b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-700); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }

/* Typography */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; background: var(--accent-bg); color: var(--accent); padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--primary); margin-bottom: 14px; line-height: 1.15; }
.section-desc { color: var(--gray-500); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.text-elegant { font-family: var(--font-display); font-style: italic; color: var(--accent); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.5px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); padding: 10px 22px; font-size: 0.82rem; }
.btn-white:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============ NAVBAR ============ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); padding: 12px 0; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-text { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--white); transition: var(--transition); }
.logo-accent { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; font-style: italic; color: var(--accent-light); }
.navbar.scrolled .logo-text { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.8); border-radius: var(--radius-sm); letter-spacing: 0.3px; }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link { color: var(--gray-700); }
.navbar.scrolled .nav-link:hover { color: var(--primary); background: var(--gray-100); }
.nav-link.nav-cta { background: var(--accent); color: var(--white) !important; padding: 10px 20px; margin-left: 8px; }
.nav-link.nav-cta:hover { background: var(--accent-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--primary); }

/* ============ HERO SLIDER ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 0; }
.hero-season { display: inline-block; background: rgba(184,134,11,0.2); border: 1px solid rgba(184,134,11,0.3); color: var(--accent-light); padding: 8px 24px; border-radius: 50px; font-size: 0.82rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 600; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--white); border-color: var(--white); width: 28px; border-radius: 5px; }

/* ============ BRAND BAR ============ */
.brand-bar { padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.brand-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.brand-item i { font-size: 1.3rem; color: var(--accent); width: 24px; text-align: center; }
.brand-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 2px; }
.brand-item p { font-size: 0.78rem; color: var(--gray-500); }

/* ============ COLLECTION ============ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card { text-align: center; }
.collection-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.collection-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover .collection-img img { transform: scale(1.05); }
.collection-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; opacity: 0; transition: var(--transition); }
.collection-card:hover .collection-overlay { opacity: 1; }
.collection-count { color: var(--white); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; }
.collection-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.collection-card p { font-size: 0.85rem; color: var(--gray-500); }

/* ============ HIGHLIGHT ============ */
.highlight-section { background: var(--gray-50); }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.highlight-img { overflow: hidden; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-content { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.highlight-content .section-tag { align-self: flex-start; }
.highlight-content .section-title { text-align: left; margin-bottom: 16px; }
.highlight-content p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.highlight-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hf-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--gray-700); font-weight: 500; }
.hf-item i { color: var(--accent); font-size: 0.8rem; }

/* ============ KATALOG / PRODUCTS ============ */
.katalog-section { background: var(--white); }
.katalog-filters { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 24px; border-radius: 50px; border: 1px solid var(--gray-200); background: var(--white); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--gray-700); cursor: pointer; transition: var(--transition); }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); border: 1px solid var(--gray-200); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card.hidden { display: none; }
.product-img { position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.product-badge.new { background: var(--primary); color: var(--white); }
.product-badge.hot { background: var(--sale); color: var(--white); }
.product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(10px); transition: var(--transition); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--gray-700); box-shadow: var(--shadow-sm); transition: var(--transition); }
.action-btn:hover { background: var(--accent); color: var(--white); }
.favorite-btn.active i { font-weight: 900; color: var(--sale); }
.product-body { padding: 16px; }
.product-category { font-size: 0.72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.product-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin: 6px 0 8px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-current { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.price-current.sale { color: var(--sale); }
.price-old { font-size: 0.85rem; color: var(--gray-400); text-decoration: line-through; }
.product-sizes { font-size: 0.75rem; color: var(--gray-400); letter-spacing: 1px; }

/* ============ ABOUT ============ */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
.about-img-1 img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-2 img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); margin-top: 80px; }
.about-content .section-tag { margin-bottom: 8px; }
.about-content .section-title { text-align: left; margin-bottom: 16px; }
.about-content p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.about-numbers { display: flex; gap: 32px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.about-num span { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.about-num p { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; margin: 0; }

/* ============ INSTAGRAM ============ */
.instagram-section { background: var(--white); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.insta-overlay i { color: var(--white); font-size: 1.5rem; }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ============ CONTACT ============ */
.iletisim { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); transition: var(--transition); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card i { font-size: 1.4rem; color: var(--accent); margin-bottom: 12px; }
.contact-card h3 { font-size: 0.92rem; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.contact-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.map-wrapper iframe { display: block; }

/* ============ FOOTER ============ */
.footer { background: var(--primary); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer .logo-text { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-links h4 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-credit a { color: var(--accent-light); font-weight: 500; }
.footer-credit a:hover { color: var(--white); }

/* ============ WHATSAPP ============ */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; display: flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 50px; background: #25D366; color: var(--white); font-size: 0.9rem; font-weight: 600; z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: var(--transition); }
.whatsapp-btn i { font-size: 1.3rem; }
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* ============ ANIMATIONS ============ */
.anim-fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
.anim-fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-anim { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-anim.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-img img { height: 350px; }
    .highlight-content { padding: 50px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 24px 24px; gap: 4px; transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); z-index: 1000; }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--gray-700); width: 100%; padding: 12px 16px; }
    .nav-menu .nav-link.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
    .nav-toggle { display: flex; }
    .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); }
    .collection-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .collection-img img { height: 350px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-img img { height: 240px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .about-images { grid-template-columns: 1fr; }
    .about-img-2 img { margin-top: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .brand-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .product-img img { height: 380px; }
    .contact-grid { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .wp-text { display: none; }
    .whatsapp-btn { padding: 14px; border-radius: 50%; }
    .whatsapp-btn i { font-size: 1.5rem; }
}

.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.nav-overlay.active { opacity: 1; visibility: visible; }
