@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #10243c; /* La Vie deep navy */
  --secondary-color: #1f3858; /* Supporting navy */
  --accent-color: #b99759; /* La Vie warm gold */
  --accent-hover: #d4b884; /* Soft gold hover */
  --text-light: #fbf8f3;
  --text-dark: #263247;
  --bg-light: #fdf9f2;
  --bg-gray: #f3ebde; /* La Vie warm cream */
  --primary-rgb: 16, 36, 60;
  --accent-rgb: 185, 151, 89;
  --glass-bg: #f2ebe4;
  --glass-border: rgba(185, 151, 89, 0.24);
  --transition-speed: 0.3s;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
}

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

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
  transition: all var(--transition-speed) ease;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition-speed) ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width var(--transition-speed) ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.28), rgba(var(--primary-rgb), 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeIn 1.5s ease-out forwards;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn-primary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
  border: 2px solid var(--accent-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.45);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  background-color: var(--bg-gray);
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.16);
}

.service-image {
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-secondary {
  align-self: flex-start;
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--accent-color);
  transition: all var(--transition-speed) ease;
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Page Headers */
.page-header {
  height: 50vh;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.95), rgba(10, 24, 40, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
}

.page-header h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
}

/* Main Content Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* About Page (Hakkimizda) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  z-index: -1;
}

/* Service Detail Pages */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-image {
  position: sticky;
  top: 120px;
}

.service-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-content h3 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--primary-color);
}

.service-detail-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  font-size: 1.05rem;
  color: #444;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.cta-box {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.22);
}

.cta-box h3 {
  color: var(--text-light);
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
}

.cta-box p {
  color: #d8dce3;
  margin-bottom: 1.75rem;
}

.cta-box .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

.contact-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: var(--bg-gray);
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
}

.contact-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  align-items: center;
  gap: 2rem;
}

.contact-section-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.contact-section-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: #5a5a5a;
}

.contact-section-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-detail-item {
  min-width: 200px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.contact-detail-item:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
}

.contact-detail-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.62);
}

.contact-detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-section-button {
  justify-self: end;
}

/* Gallery Page (Görseller) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.9), transparent);
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.gallery-overlay h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform var(--transition-speed) ease;
}

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

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

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: var(--glass-bg);
  color: var(--text-dark);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(var(--accent-rgb), 0.18);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--primary-color);
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(var(--primary-rgb), 0.12);
  padding-top: 2rem;
  width: 100%;
  color: rgba(var(--primary-rgb), 0.72);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-detail-image {
    position: static;
  }
  .contact-section-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-section-button {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--glass-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -12px 0 30px rgba(var(--primary-rgb), 0.12);
    transition: right 0.4s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .contact-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .contact-section-copy h2 {
    font-size: 1.9rem;
  }

  .contact-section-details {
    flex-direction: column;
  }

  .contact-detail-item {
    width: 100%;
  }

  .services {
    padding: 4rem 0;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
