/* =========================================================
   ROOT + GLOBAL RESET
   ========================================================= */
:root {
  --navy: #0b1b3b;
  --navy-dark: #050d21;
  --gold: #ffd54a;
  --light: #fff7e6;
  --text: #222222;
  --muted: #666666;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #ffcf33 0%, #ff7b00 40%, #ff3d71 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   HEADER + NAVIGATION
   ========================================================= */
header {
  background: #ffffffdd;
  color: #111;
  padding: 0.8rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  padding-bottom: 0.15rem;
  font-weight: 600;
  color: #333;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #333;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 56px;
    right: 1.5rem;
    background: #ffffffee;
    flex-direction: column;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =========================================================
   SPECIAL GALLERY LINK (GOLD)
   ========================================================= */
header nav ul li a.gallery-link {
  color: #d4a056 !important;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.15rem;
  transition: color .5s ease !important;
}

header nav ul li a.gallery-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d4a056 !important;
  transition: width .5s ease, left .5s ease !important;
  border-radius: 2px;
}

header nav ul li a.gallery-link:hover {
  color: #e8b96a !important;
}

header nav ul li a.gallery-link:hover::after {
  width: 40% !important;
  left: 30% !important;
}

/* =========================================================
   MAIN LAYOUT + TYPOGRAPHY
   ========================================================= */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

section {
  margin-bottom: 3rem;
}

h1, h2, h3 {
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

p {
  margin-bottom: 0.75rem;
  color: #222;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #ff3d71;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: none;
}

.btn-secondary:hover {
  background: #ffffff22;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* =========================================================
   CARDS + GRID ELEMENTS
   ========================================================= */
.card {
  background: #ffffffee;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.media-item {
  background: #ffffffee;
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* =========================================================
   SOCIAL + CONTACT
   ========================================================= */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.icon {
  width: 20px;
  height: 20px;
  fill: #ff3d71;
}

/* =========================================================
   HERO VERSION D (FINAL)
   ========================================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10% 80px;
  gap: 70px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 520px;
  color: #fff;
}

.hero-text .tagline {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffe7c2;
}

.hero-text h1 {
  font-size: 2.2rem;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #fff;
}

.hero-text p {
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

/* CALL BUTTON */
.call-btn {
  background: #c62828;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
}

/* RIGHT PHOTO */
.hero-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo-frame {
  background: rgba(255,255,255,0.18);
  padding: 18px;
  border-radius: 18px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    0 0 60px rgba(255, 180, 120, 0.45);
  position: relative;
}

.hero-photo-frame img {
  height: 380px;
  width: auto;
  border-radius: 14px;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: -35px;
  background: radial-gradient(
    circle at center,
    rgba(255, 200, 150, 0.45),
    rgba(0,0,0,0)
  );
  border-radius: 50%;
  z-index: -1;
}

/* BADGE */
.hero-badge {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: #ffcc66;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-photo-frame img {
    height: 280px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.9;
}
