@font-face {
  font-family: 'Core';
  src: url('fonts/CoreMellow-Bold.woff2') format('woff2'),
       url('fonts/CoreMellow-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* helps with loading performance */
}

@font-face {
  font-family: 'CoreSans';
  src: url('fonts/CoreSansN-45Regular.woff2') format('woff2'),
       url('fonts/CoreSansN-45Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* helps with loading performance */
}


body {
  margin: 0;
  font-family: 'CoreSans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

h1, h2 {
  font-family: 'Core', sans-serif;
}

header.hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
}

header.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

header.hero h1 {
  font-size: 3.5em;
  margin: 0;
}

header.hero p {
  font-size: 1.5em;
  margin: 10px 0 20px;
}

.btn {
  background: #d4a373;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.btn:hover {
  background: #b5835a;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2.2em;
  color: #5a3e2b;
  margin-bottom: 20px;
}

.alt-bg {
  background: #fdf6f0;
}

#gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

#gallery .grid-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

#gallery img:hover {
  transform: scale(1.08);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  font-weight: bold;
}

footer {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 20px;
  margin-top: 40px;
}

/* Base nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

/* Logo */
.logo-nav {
  height: 40px;
  width: auto;
}

/* Menu links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hamburger base */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100; /* above nav menu */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* Animate into X when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* show hamburger */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
}



.logo-nav {
  height: 40px;       /* Small logo in navbar */
  width: auto;
}

/* Hero section logo */
.logo-hero {
  max-width: 300px;   /* Large but not huge */
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

