* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f1a14;
  color: #f5f5f0;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed; /* makes it follow scroll */
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(15, 26, 20, 0.6); /* translucent dark green */
  backdrop-filter: blur(10px); /* glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: #f5f5f0; /* same as your site text */
}

.logo:visited,
.logo:active,
.logo:hover {
  color: #f5f5f0;
  text-decoration: none;
  opacity: 0.8;
}

.logo span {
  color: inherit;
}

.logo img {
  height: 32px; /* keep it small and clean */
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 20px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #f5f5f0;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;

  display: flex;
  align-items: flex-end; /* pushes content down */
  justify-content: center;
  padding-bottom: 180px; /* controls how low it sits */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600; /* lighter = more elegant */
  opacity: 0.9;
  margin: 10px 0;
}

.tagline {
  display: block;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.7;
}

.hero .btn {
  margin-top: 25px;
}

.divider {
  width: 80px;
  height: 2px;
  background: #c2a76d; /* your gold accent */
  margin: 15px auto 20px;
  opacity: 0.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c2a76d;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
}

.btn.outline {
  background: transparent;
  border: 1px solid #c2a76d;
  color: #c2a76d;
}

/* FEATURED */
.featured {
  padding: 80px 20px;
  text-align: center;
}

.featured h2 {
  margin-bottom: 40px;
}

.photo-grid {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 240px;
  background: #1c2a22;
}

.photo-card.large {
  grid-column: span 3;
  min-height: 360px;
}

.photo-card:not(.large) {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease, filter 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* CTA */
.cta {
  padding: 80px 20px;
  text-align: center;
  background: #16231c;
}

.cta h2 {
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
}