/* =========================================================
   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
   ========================================================= */
/* NAVIGATION BASE */
.nav-header {
  background:#ffffffee;
  backdrop-filter:blur(10px);
  border-bottom:1px solid #ddd;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container {
  max-width:1200px;
  margin:auto;
  padding:1rem 1.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-logo {
  font-family:'Playfair Display', serif;
  font-size:1.8rem;
  font-weight:700;
  color:#111;
}

/* DESKTOP NAV LINKS */
.nav-links {
  display:flex;
  gap:1.5rem;
  font-family:system-ui, sans-serif;
}

.nav-links a {
  text-decoration:none;
  color:#333;
  font-weight:600;
}

/* HAMBURGER (HIDDEN ON DESKTOP) */
.nav-toggle {
  display:none;
}

.nav-toggle-label {
  display:none;
  cursor:pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display:block;
  background:#333;
  height:3px;
  width:28px;
  border-radius:3px;
  position:relative;
  transition:0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content:"";
  position:absolute;
  left:0;
}

.nav-toggle-label span::before {
  top:-8px;
}

.nav-toggle-label span::after {
  top:8px;
}

/* MOBILE STYLES */
@media (max-width: 900px) {

  /* Show hamburger */
  .nav-toggle-label {
    display:block;
  }

  /* Hide desktop nav */
  .nav-links {
    position:absolute;
    top:70px;
    right:0;
    background:#ffffffee;
    backdrop-filter:blur(10px);
    width:100%;
    display:flex;
    flex-direction:column;
    gap:1rem;
    padding:1.5rem;
    border-bottom:1px solid #ddd;
    transform:translateY(-200%);
    transition:transform 0.3s ease;
  }

  /* Slide down when checked */
  .nav-toggle:checked ~ .nav-links {
    transform:translateY(0);
  }

  /* Animate hamburger into X */
  .nav-toggle:checked + .nav-toggle-label span {
    background:transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    top:0;
    transform:rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    top:0;
    transform:rotate(-45deg);
  }
}


/* =========================================================
   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;
}
section h2 {
    color: #b85c00 !important; /* warm gold */
    font-weight: 800;
    letter-spacing: 0.5px;
}
.media-item h3 {
    color: #b85c00 !important;    /* warm gold */
    font-weight: 800;
    letter-spacing: 0.5px;
}
.contact-card p.muted {
    background: rgba(255,255,255,0.35);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}
.footer-link {
    color: #ffb86b;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-link:hover {
    color: #ffd9a1;
    padding-left: 4px;
}

footer {
    line-height: 1.6;
    font-size: 1rem;
}

footer h3 {
    color: #fff;
    margin-bottom: .5rem;
}

footer p {
    margin: .3rem 0;
}
.blog-page {
  margin:0;
  padding:0;
  font-family:Georgia, serif;
  background:#faf7f2;
  color:#222;
}

.blog-page .layout {
  max-width:1100px;
  margin:3rem auto;
  padding:0 1rem;
}

.blog-page h1.page-title {
  font-size:2.4rem;
  font-family:"Playfair Display",serif;
  margin-bottom:0.5rem;
  color:#111;
}

.blog-page .post-list {
  display:flex;
  flex-direction:column;
  gap:1.8rem;
}

.blog-page .post-card {
  display:grid;
  grid-template-columns:180px 1fr;
  gap:1.5rem;
  background:#fff;
  padding:1.2rem;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.blog-page .post-thumb {
  width:100%;
  border-radius:10px;
  object-fit:cover;
  max-height:150px;
}

.blog-page .post-meta {
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:#999;
  margin-bottom:0.4rem;
}

.blog-page .post-card h2 {
  margin:0 0 0.4rem;
  font-size:1.4rem;
  font-family:"Playfair Display",serif;
  color:#111;
}

.blog-page .read-more {
  font-family:system-ui,sans-serif;
  font-size:0.95rem;
  font-weight:700;
  color:#b85c00;
  text-decoration:none;
}

}
