/* ---------- Basic Reset ---------- */
:root {
  --deep-green: #003322;
  --gold: #d4af37;
  --white: #ffffff;
  --charcoal: #222222;
  --glass: rgba(255, 255, 255, 0.06);
  --transition: 300ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
html,
body {
  height: 100%;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  color: var(--charcoal);
  background: linear-gradient(180deg, #e5e4e4 0%, #e1dede 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--transition), color var(--transition);
}

/* ---------- Dark Theme ---------- */
body.dark {
  background: linear-gradient(180deg, #00120a 0%, #002416 100%);
  color: #f5f5f5;
}

.div-1{
    color: #00120a;
}

.div-2{
    color: #00120a;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

/* ---------- Header ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.6px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.tagline {
  font-size: 12px;
  opacity: 0.9;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  opacity: 0.9;
}
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
}
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
body.dark .theme-toggle {
  border-color: rgba(255, 255, 255, 0.08);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  margin: 18px 0 32px;
  padding: 28px;
  border-radius: 18px;
  background: repeating-linear-gradient(
    45deg,
    white,
    rgba(212, 175, 55, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
  box-shadow: 0 8px 30px rgba(2, 24, 12, 0.04);
}
body.dark .hero {
  background: linear-gradient(
    180deg,
    rgba(4, 12, 7, 0.35),
    rgba(3, 10, 6, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 38px;
  color: var(--deep-green);
}
body.dark .hero h1 {
  color: var(--gold);
}
.hero p {
  margin: 12px 0 20px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.95;
}
.cta {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 180ms;
}
.cta:hover {
  transform: translateY(-3px);
}

/* ---------- Slider Section ---------- */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.slider {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  will-change: transform;
  transform: translateX(0);
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.slide {
  flex: 0 0 320px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(2, 24, 12, 0.06);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
body.dark .slide {
  background: linear-gradient(180deg, #072016 0%, #02120a 100%);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 300ms;
}
.slide:hover img {
  transform: scale(1.03);
}
.slide .overlay {
  position: absolute;
  left: 12px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

/* nav arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.75)
  );
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: none;
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}
body.dark .arrow {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
}

/* ---------- Product Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin: 20px 0;
}
.card {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  cursor: pointer;
  transition: transform 220ms, box-shadow 220ms;
  box-shadow: 0 8px 20px rgba(2, 24, 12, 0.04);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 24, 12, 0.08);
}
.card .meta {
  padding: 12px;
}
.card h4 {
  margin: 0 0 6px;
  color: #00120a;
}
.card p {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

/* ---------- About & Contact ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}
.about {
  padding: 18px;
  border-radius: 12px;
  background: repeating-linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.02),
    rgba(212, 175, 55, 0.02) 8px,
    transparent 8px,
    transparent 16px
  );
}
body.dark .about {
  background: linear-gradient(180deg, rgba(3, 9, 6, 0.35), rgba(3, 9, 6, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.contact {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
}

.contact-us{
    color: blue;
}

form {
  display: grid;
  gap: 8px;
}
input,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
/* .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--glass);
  background-color: #00120a;
  text-decoration: none;
} */

.send-us{
     display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem ;
  background-color: green;
  text-decoration: none;
  color: white;
  font-weight: 600;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* ---------- Footer ---------- */
footer {
  padding: 18px;
  text-align: center;
  margin-top: 36px;
  opacity: 0.9;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.modal {
  width: min(900px, 95%);
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(2, 24, 12, 0.5);
}
body.dark .modal {
  background: #04120a;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .slider {
    padding: 10px;
  }
  .slide {
    flex: 0 0 78%;
    height: 360px;
  }
}
@media (max-width: 520px) {
  .slide {
    flex: 0 0 92%;
    height: 320px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}
