/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding:0 ;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1a1a2c;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #0a1a3a; /* navy */
}

.container {
  width: 80%;
  max-width: 1150px;
  margin: 0 auto;
}

/* ===== UTILITIES ===== */
.gold-accent {
  color: #c9a227;
}

.btn-gold {
  background-color: #c9a227;
  color: #0a1a3a;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover {
  background-color: #b58b1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #c9a227;
}
.section-title.center:after {
  left: 50%;
  transform: translateX(-50%);
}

.gold-border {
  border-bottom: 3px solid #c9a227;
  width: 80px;
  margin: 20px 0;
}
.gold-border.center {
  margin: 10px auto 30px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.08);
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-placeholder {
  width: 48px;
  height: 48px;
  background: #0a1a3a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  border: 1px solid #c9a227;
}
.logo-text h2 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
  color: #0a1a3a;
}
.logo-text span {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #c9a227;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: #0a1a3a;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
}
.nav-menu a:hover {
  color: #c9a227;
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0a1a3a;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 150vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 58, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 2s ease;
}
.hero-overlay h1 {
  color: white;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  letter-spacing: 2px;
  max-width: 900px;
  padding: 0 20px;
  border-left: 6px solid #c9a227;
  border-right: 6px solid #c9a227;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}
.alt-bg {
  background: #f9fafc;
}
.contact-section {
  background: #f0f3f8;
  padding: 60px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.col img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
}
.col img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0,31,63,0.25);
}

/* Image hover overlay */
.img-overlay-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 58, 0.85);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 24px;
  pointer-events: none;
}
.img-overlay-container:hover .overlay-text {
  opacity: 1;
  pointer-events: auto;
}

/* Legacy pop effect */
.pop-image {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop-image:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Right image alignment */
.right-img .img-overlay-container {
  order: 2;
}

/* ===== FOOTER ===== */
footer {
  background: #0a1a3a;
  color: #e0e0e0;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo-placeholder {
  width: 70px;
  height: 70px;
  background: #c9a227;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1a3a;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
}
.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #c9a227;
}
.social-icons {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.social-icons a {
  color: white;
  background: #1e3456;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1.4rem;
}
.social-icons a:hover {
  background: #c9a227;
  color: #0a1a3a;
  transform: translateY(-5px);
}
.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #1e3456;
  margin-top: 40px;
  color: #a0b0c0;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: 2px 0 20px hwb(0 61% 38% / 0.1);
    transition: left 0.4s ease;
    gap: 24px;
    align-items: flex-start;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: block;
  }
  .hero {
    height: 60vh;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Image aspect ratios for placeholders */
.col .img-overlay-container img[src*="1024x1536"] {
  aspect-ratio: 1024/1536;
}
.col .img-overlay-container img[src*="1200x800"] {
  aspect-ratio: 1200/800;
}