/*
Theme Name: Melisa Fotoğrafçılık
Theme URI: https://exposea.xyz
Author: Melisa Fotoğrafçılık
Description: Melisa Fotoğrafçılık icin ozel WordPress temasi.
Version: 1.0.0
License: All Rights Reserved
Text Domain: melisa-fotografcilik
*/

:root {
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --gold-dark: #A8893A;
  --bg-primary: #0F0F23;
  --bg-secondary: #1A1A2E;
  --bg-card: #16213E;
  --text-primary: #F5F5F5;
  --text-secondary: #B0B0B0;
  --text-muted: #7A7A8E;
  --white: #FFFFFF;
  --gradient-gold: linear-gradient(135deg, #C9A84C, #D4AF37, #E8C84A);
  --gradient-dark: linear-gradient(180deg, #0F0F23, #1A1A2E);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.3; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.gold-line {
  width: 60px; height: 3px;
  background: var(--gradient-gold);
  margin: 15px auto;
  border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15,15,35,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.logo span { color: var(--text-primary); font-weight: 300; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.lang-switcher {
  display: flex;
  gap: 5px;
  margin-left: 15px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}
.lang-switcher button {
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-switcher button.active, .lang-switcher button:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-parallax {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background:
    linear-gradient(135deg, rgba(10,10,25,0.82) 0%, rgba(15,15,35,0.65) 50%, rgba(20,15,40,0.80) 100%),
    url('https://images.unsplash.com/photo-1495121605193-b116b5b9c737?w=1800&q=80&fit=crop') center/cover no-repeat;
  will-change: transform;
  transition: transform 0.05s linear;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(transparent, var(--bg-primary));
  z-index: 1;
}
.hero-camera-decor {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  opacity: 0.12;
  background: url('https://images.unsplash.com/photo-1495121605193-b116b5b9c737?w=800&q=80&fit=crop&crop=center') center/cover no-repeat;
  border-radius: 50%;
  filter: grayscale(100%) contrast(1.2);
  z-index: 0;
  animation: float-camera 8s ease-in-out infinite;
}
@keyframes float-camera {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-52%) translateX(-10px); }
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 25px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.service-card .btn {
  margin-top: 20px;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== WHY US / STATS ===== */
.why-us { background: var(--bg-secondary); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.stat-card {
  text-align: center;
  padding: 30px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}
.feature-item {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.06);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--white); }
.feature-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(15,15,35,0.9));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-5px);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 15px; }
.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
  font-size: 1rem;
}
.review-author-info h4 { font-size: 0.9rem; }
.review-author-info p { font-size: 0.8rem; color: var(--text-muted); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.2);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content { padding: 25px; }
.blog-card-content .tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-card-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-content p { font-size: 0.85rem; color: var(--text-secondary); }
.blog-card-content .read-more {
  color: var(--gold);
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 10px;
}
.blog-card-content .read-more:hover { text-decoration: underline; }

/* ===== SINGLE POST ===== */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.single-post-content .post-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.single-post-content .post-meta span { color: var(--gold); }
.single-post-content .post-thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 500px;
}
.single-post-content .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post-content .post-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.single-post-content .post-body p { margin-bottom: 20px; }
.single-post-content .post-body h2,
.single-post-content .post-body h3 {
  color: var(--white);
  margin: 35px 0 15px;
}
.single-post-content .post-body a { color: var(--gold); }
.single-post-content .post-body img {
  border-radius: var(--radius);
  margin: 20px 0;
}

/* ===== CONTACT BAND ===== */
.contact-band { background: var(--bg-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.95rem; margin-bottom: 5px; }
.contact-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(212,175,55,0.05));
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 15px; display: block; }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .why-features, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 30px;
    gap: 20px;
    transition: var(--transition);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .lang-switcher { border: none; padding: 0; margin: 0; }
  .services-grid, .reviews-grid, .blog-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p { color: var(--text-secondary); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* RTL Support for Arabic */
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .feature-item { flex-direction: row-reverse; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; }
[dir="rtl"] .review-author { flex-direction: row-reverse; }

/* ===== 404 ===== */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
}
.not-found-section h1 {
  font-size: 8rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.not-found-section h2 { font-size: 2rem; margin-bottom: 15px; }
.not-found-section p { color: var(--text-secondary); margin-bottom: 30px; }
