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

:root {
  --navy: #1A1F36;
  --charcoal: #2C2C2C;
  --accent: #CFA15D;  
  --light-bg: #F7F8FA;
  --text-light: #E0E0E0;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(#2C2C2C);
  background: #edebe2;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--navy);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
}

.logo a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
}

.navbar ul { list-style: none; }
.navbar nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.contact-btn {
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--accent);
  color: var(--navy);
}

.banner {
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 1.6rem 1rem;
}

.banner h1 {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
}

.banner .tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  justify-items: stretch;
}

.gallery img {
  width: 90%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover { transform: scale(1.03); }

.featured {
  grid-column: 1 / -1;
  justify-self: stretch;
  display: flex;
  justify-content: center;
  width: 100%;
}

.featured img {
  width: 95%;
  max-width: 1600px;
  border-radius: 12px;
}

.row-3 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}

.row-3 img {
  width: 90%;
  max-width: 400px;
}

footer {
  background: var(--navy);
  color: white;
  margin-top: 3rem;
  padding: 0;
  border-top: 4px solid var(--accent);
}

.footer-banner {
  text-align: center;
  padding: 3rem 1rem;     
  max-width: 1000px;
  margin: 0 auto;
}

footer h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
}