/* =============================
   Global Reset & Variables
============================= */
:root {
  --primary: #111111;
  --secondary: #666666;
  --accent: #c9a24d;
  --bg: #fafafa;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

ul {
  padding-left: 1.2rem;
}

/* =============================
   Header & Navigation
============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(0 1 10);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.site-header .logo {
  font-size: 1.6rem;
  max-width: 13rem;
  color: rgba(255,255,255,0.95);
}

.site-header nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  color: rgba(198, 198, 198, 0.95);
  position: relative;
}

.site-header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

/* =============================
   Hero Sections
============================= */
.page-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-hero h2,
.page-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 1);
}

.page-hero h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* =============================
   Sections
============================= */
section {
  padding: 4.5rem 8%;
  animation: fadeUp 0.8s ease both;
}

section.alt {
  background: var(--white);
}

section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p {
  color: var(--secondary);
  max-width: 900px;
}

section ul li {
  margin-bottom: 0.4rem;
}

/* =============================
Product List (PNG, No Background)
============================= */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
}


.product-item {
  /* background: var(--white); */
  padding: 0rem 1.5rem;
  border-radius: 16px;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.06); */
  /* transition: transform 0.4s ease, box-shadow 0.4s ease; */
  transition: transform 0.4s ease;
}


.product-item:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.1); */
}


.product-item img {
  width: 200px;
  height: 160px;
  margin-bottom: 1.2rem;
}


.product-item h4 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* =============================
   Gallery
============================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =============================
   Footer
============================= */
.site-footer {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 8%;
}

.site-footer p {
  font-size: 0.9rem;
}

.site-footer div {
  color: #ffffff;
  padding: 1rem;
}

.social-media-icon {
  width: 50px;
  height: 50px;
  stroke: #ffffff;
}
.social-media-icon:hover {
  stroke: #c9a24d;
}

.site-footer-anchor:link,
.site-footer-anchor:visited,
.site-footer-anchor:hover,
.site-footer-anchor:active {
  color: #ffffff; /* Your desired color (e.g., black, blue, #00FF00, etc.) */
  text-decoration: none; /* Removes the underline */
}

/* Optional: Add hover effect */
.site-footer-anchor:hover {
  color: #c9a24d; /* Color when the user hovers over the link */
}

/* =============================
   Full Page Site Loader
============================= */
#site-loader {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#site-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  width: 300px;
  margin-bottom: 1.5rem;
}

.loader-content p {
  color: #c9a24d;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

/* =============================
   Animations
============================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   Responsive
============================= */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header nav a {
    margin: 0 1rem;
  }

  .page-hero h2 {
    font-size: 2.2rem;
  }
}