/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #FEFAE0; /* soft beige */
  color: #2e2a20;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* ===== Global Buttons ===== */
a, .btn-royal, .btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-royal {
  background: #7B3F00; /* deep brown */
  color: #fff;
  border: 2px solid #7B3F00;
}

.btn-royal:hover {
  background: #fff;
  color: #7B3F00;
}

.btn-outline {
  background: transparent;
  border: 2px solid #7B3F00;
  color: #7B3F00;
}

.btn-outline:hover {
  background: #7B3F00;
  color: #fff;
}

.small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #fff;
  border-bottom: 2px solid #B1AB86;
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

header .logo h1 a {
  text-decoration: none;
  color: #7B3F00;
}

header .logo h1 span {
  color: #B1AB86;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  border: 2px solid #7B3F00;
  color: #7B3F00;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: #7B3F00;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #7B3F00;
}

/* ===== Hero Section ===== */
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(123,63,0,0.6), rgba(123,63,0,0.6)), url("https://via.placeholder.com/1500x800") no-repeat center/cover;
  color: #fff;
  padding: 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.feature-box {
  background: #FEFAE0;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-box i {
  font-size: 2rem;
  color: #7B3F00;
  margin-bottom: 1rem;
}

.feature-box:hover {
  transform: translateY(-6px);
}

/* ===== Products ===== */
.products {
  padding: 4rem 2rem;
  text-align: center;
  background: #F7F5EB;
}

.products h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #7B3F00;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price {
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: #7B3F00;
}

.more-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== About ===== */
.about {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #7B3F00;
}

/* ===== Footer ===== */
footer {
  background: #0A400C;
  color: #fff;
  padding: 3rem 2rem 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a,
.footer-social a {
  display: inline-block;
  margin: 0.3rem 0;
  padding: 0.3rem 0.6rem;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  background: #fff;
  color: #0A400C;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}
.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.hover-tilt {
  transition: transform 0.3s ease;
}
.hover-tilt:hover {
  transform: rotate(-2deg) scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    border: 2px solid #7B3F00;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
