/* ===========================
   Variables & Reset
   =========================== */
:root {
  /* Logo-derived palette */
  --bg:           #640000;       /* logo background – deep burgundy */
  --bg-dark:      #4a0000;
  --bg-darker:    #320000;
  --cream:        #edebde;       /* logo text colour */
  --cream-light:  #f5f3ea;
  --gold:         #c9a96e;
  --gold-light:   #dcc48f;
  --white:        #ffffff;
  --text:         var(--cream);
  --text-muted:   rgba(237,235,222,0.65);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   Navbar  (RAE-style fixed)
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#navbar.scrolled {
  background: rgba(50,0,0,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   Hero  (full-viewport, like RAE)
   =========================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

/* no overlay — keeps background matching logo exactly */

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 28px 40px;
}

.logo {
  width: 300px;
  max-width: 70vw;
  margin: 0 auto 32px;
  border-radius: 0;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  opacity: 0.85;
}

.btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Scroll arrow */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator a {
  color: var(--cream);
  font-size: 1.2rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  animation: bounce 2s infinite;
}
.scroll-indicator a:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ===========================
   Sections (shared)
   =========================== */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ===========================
   About
   =========================== */
.about {
  background: var(--bg-dark);
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.about-body {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.about-body .lead {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-body p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.9;
}
.about-body p:last-child { margin-bottom: 0; }

/* ===========================
   Contact
   =========================== */
.contact {
  background: var(--bg);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(237,235,222,0.1);
  border-radius: 4px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.contact-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 18px;
  font-size: 1.25rem;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Instagram branded icon on hover */
.instagram-icon { border-color: #e1306c; color: #e1306c; }
.contact-card:hover .instagram-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

/* Facebook branded icon on hover */
.facebook-icon { border-color: #1877F2; color: #1877F2; }
.contact-card:hover .facebook-icon {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  word-break: break-word;
}

/* ===========================
   Footer
   =========================== */
footer {
  background: var(--bg-darker);
  text-align: center;
  padding: 48px 28px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(237,235,222,0.2);
  color: var(--cream);
  font-size: 1.05rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(50,0,0,0.96);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 300px; }

  .nav-links li { text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .logo { width: 220px; }

  .tagline { font-size: 1.05rem; }

  .section { padding: 72px 0; }
  .section-title { font-size: 1.7rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .contact-card { padding: 28px 16px 24px; }
}
