/* ===============================
   Global Styles
=============================== */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #F8E5C2; /* warm beige */
  color: #3B1F0F; /* dark brown text */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

* {
  box-sizing: border-box;
}

body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

/* ===============================
   Layout Wrappers
=============================== */
section {
  width: 100%;
  text-align: center;
}

.wrap {
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}

/* ===============================
   Header & Navigation
=============================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em;
  background-color: #B5522A; /* burnt orange */
  color: #FFF5E1;
  border-bottom: 3px solid #D48A2A; /* amber accent */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo {
  font-weight: 700;
  font-size: 1.4em;
  color: #FFF5E1;
  letter-spacing: 1px;
}

nav a {
  color: #F5E1C0; /* light amber */
  margin-left: 1.5em;
  text-decoration: none;
  font-size: 1em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav a.active,
nav a:hover {
  background-color: #8B3D22; /* deep chestnut hover */
  color: #FFF;
}

/* ===============================
   Section Styling
=============================== */
.section {
  background-color: #F3C58D; /* soft peach */
  padding: 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  text-align: center;
}

/* ===============================
   Images
=============================== */
img {
  width: 280px;
  height: auto;
  margin: 10px;
  border-radius: 10px;
  border: 3px solid #E9B872; /* golden edge */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===============================
   Footer
=============================== */
footer {
  background-color: #8B4E33; /* deep brown */
  color: #FFF5E4;
  text-align: center;
  padding: 1rem;
  margin-top: 40px;
  font-size: 0.9rem;
  width: 100%;
}

/* SERVICES section layout */
.services {
  display: flex;
  justify-content: line;
  gap: 20px;
  flex-wrap: wrap; /* allows them to wrap on small screens */
  margin-top: 40px;
}

/* Each clickable service card */
.service-card {
  display: block;
  width: 260px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.section {
  text-align: center;
  margin: 80px auto;
  max-width: 1200px;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fff;
}

.grid-4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.product-img {
  width: 100%;
  max-width:320px
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

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

.container {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;      /* centers vertically */
}


/* Dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(10,18,26,0.95);
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  z-index: 100;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--accent);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


