/* ─── RESET & BASE ─── */

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

body {
  font-family: "Nunito", sans-serif;
  background: #f7f5f2;
  color: #333;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ─── HEADER ─── */

header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 50;
}

.header-inner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
}

.logo img {
  width: 193px;
  height: 113px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

nav ul li {
  position: relative;
  padding-bottom: 4px;
}

nav ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #999;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

nav ul li:hover::after {
  width: 100%;
}

/* ─── SOCIAL ICONS ─── */

.social-icons {
  position: absolute;
  right: 0;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.2px solid #c6a667;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease;
}

.social-icons a svg {
  width: 14px;
  height: 14px;
  stroke: #c6a667;
  fill: none;
  stroke-width: 1.2px;
  transition: stroke 0.25s ease;
}

.social-icons a:hover {
  border-color: #a8894b;
}
.social-icons a:hover svg {
  stroke: #a8894b;
}

/* ─── THIN BANNER (sub-pages) ─── */

.banner-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #0b1a33;
  border-bottom: 1px solid rgba(198, 166, 103, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-wrapper > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.banner-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.banner-text-overlay h1 {
  font-family: "Bodoni Moda", serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ─── BLUE BAND & COLUMNS (shared: home, bio) ─── */

.blue-band {
  width: 100%;
  background: #0b1a33;
  padding: 0;
}

.main-columns {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  padding: 70px 0;
  align-items: start;
  color: #ffffff;
}

.welcome-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #ffffff;
}

.welcome-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 850px;
}

/* ─── FOOTER ─── */

.site-footer {
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-menu {
  display: flex;
  gap: 20px;
}

.footer-right {
  display: flex;
  gap: 18px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.footer-socials a svg {
  width: 11px;
  height: 11px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.4px;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-menu a,
.footer-right a,
.footer-bottom a {
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.footer-menu a:hover,
.footer-right a:hover,
.footer-bottom a:hover {
  opacity: 0.6;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .main-columns {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .banner-text-overlay h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 15px 0;
  }

  .logo {
    position: relative;
  }

  .social-icons {
    position: relative;
    justify-content: center;
  }

  nav ul {
    gap: 16px;
    font-size: 0.8rem;
  }

  .banner-wrapper {
    height: 220px;
  }
  .banner-wrapper img {
    height: 220px;
  }

  .welcome-title {
    font-size: 1.6rem;
  }
  .welcome-text {
    font-size: 0.95rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─── WHATSAPP FAB ─── */

.whatsapp-fab {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 100;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* ─── SCROLL TO TOP ─── */

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1.5px solid #c6a667;
  border-radius: 50%;
  background: #0b1a33;
  color: #c6a667;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease;
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #c6a667;
  color: #0b1a33;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  nav ul {
    gap: 12px;
    font-size: 0.75rem;
  }
  .banner-text-overlay h1 {
    font-size: 1.3rem;
  }
}
