@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #c77d9e;
  --primary-dark: #a85a7a;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-cta {
  display: block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

/* Hero with Slideshow */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}

.hero-tag {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero h1 span {
  color: #f5cdd6;
}

.hero-desc {
  color: rgba(255,255,255,0.9);
  max-width: 32rem;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(214, 51, 132, 0.4);
}

/* Hero nav dots */
.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255,255,255,0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Galeri */
.galeri {
  padding: 5rem 1rem;
  background: #f9fafb;
}

.galeri h2 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.gallery-overlay p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}

/* Owner Section */
.owner-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.owner-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .owner-container {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}

.owner-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.owner-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.owner-image:hover img {
  transform: scale(1.05);
}

.owner-label {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.owner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.owner-text {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.owner-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.2s;
}

.owner-social a:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.owner-social svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hakkımızda */
.hakkimizda {
  padding: 5rem 1rem;
  text-align: center;
}

.hakkimizda h2 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

.hakkimizda p {
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

/* İletişim */
.iletisim {
  padding: 5rem 1rem;
  background: #111827;
  color: white;
  text-align: center;
}

.iletisim h2 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.iletisim > p {
  color: #d1d5db;
  margin-bottom: 3rem;
}

.contact-grid {
  max-width: 48rem;
  margin: 0 auto 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: #1f2937;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card p {
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.contact-card a {
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--primary);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--whatsapp);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: background 0.2s;
  margin-top: 2rem;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
}

.instagram-link {
  margin-top: 3rem;
}

.instagram-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.instagram-link a:hover {
  color: var(--primary);
}

.instagram-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer */
footer {
  background: #030712;
  color: #6b7280;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.75rem;
  color: #4b5563;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary);
}

::selection {
  background-color: var(--primary);
  color: white;
}