﻿
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.logo {
  font-weight: 600;
  color: #c59d5f;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Menu */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c59d5f;
}

/* CTA */
.cta {
  background: linear-gradient(45deg, #c59d5f, #e6c88c);
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 26px;
  background: #c59d5f;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Animation */
.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 */
@media(max-width:768px){

.nav-links {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #ffffff;
  flex-direction: column;
  display: none;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  padding: 20px 0;
}

/* 👉 MORE GAP BETWEEN ITEMS */
.nav-links li {
  padding: 18px 0;   /* increased spacing */
}

/* 👉 Bigger font for mobile */
.nav-links a {
  font-size: 18px;
}

/* Active */
.nav-links.active {
  display: flex;
}

.menu-toggle {
  display: flex;
}

}
