/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a96e;
  --gold-dark: #b8944f;
  --dark: #0f0f0f;
  --dark-alt: #1a1a1a;
  --light: #f5f0e8;
  --light-alt: #ebe4d6;
  --text-dark: #1a1a1a;
  --text-light: #f5f0e8;
  --text-muted: #888;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Almarai', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--light);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav a:hover, .nav a.active { color: #fff; }

.nav-lang {
  position: relative;
}
.nav-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.85rem;
}
.nav-lang-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-top: 0.5rem;
  min-width: 120px;
}
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.nav-lang-dropdown a:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Sections */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--dark); color: var(--text-light); }
.section-light { background: var(--light); color: var(--text-dark); }
.section-alt { background: var(--light-alt); color: var(--text-dark); }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding: 2rem;
}
.hero h1 {
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview img {
  border-radius: 4px;
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
}
.about-preview h2 { margin-bottom: 1rem; }
.about-preview p { margin-bottom: 1.5rem; color: var(--text-muted); line-height: 1.8; }

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid currentColor;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.btn-solid:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Gallery Preview (homepage) */
.gallery-preview-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}
.gallery-preview-grid img:hover { transform: scale(1.02); }
.gallery-preview-cta { text-align: center; margin-top: 2rem; }

/* Footer */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 4rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.footer h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer p, .footer a { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer a:hover { color: var(--gold); }
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* About Page */
.about-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--dark);
  color: var(--text-light);
}
.about-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}
.about-content img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 4px;
}
.about-content .bio h3 {
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.about-content .bio p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #555;
}

/* Contact Page */
.contact-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--dark);
  color: var(--text-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-card h3 { margin-bottom: 0.75rem; color: var(--gold); }
.contact-card p { margin-bottom: 0.5rem; color: #555; font-size: 0.95rem; }
.contact-card a { color: var(--gold); }
.contact-card a:hover { text-decoration: underline; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open { display: flex; }
  .about-preview { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
}
