/* ================= GLOBAL RESET ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --base: #F4F1EA;
  --depth: #2F3E38;
  --action: #4F6F60;
  --highlight: #D8CFC4;
  --gold: #C2A65A;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--base);
  color: var(--depth);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded { opacity: 1; } /* This shows the content */

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(47, 62, 56, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
}

.logo img { height: 50px; width: auto; border-radius: 8px; cursor: pointer; }

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover { color: var(--highlight); }

/* ================= HEROS ================= */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(47, 62, 56, 0.5), rgba(47, 62, 56, 0.5)), url('hero.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; color: white; text-align: center;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }

.page-hero {
  padding: 180px 20px 100px;
  background: linear-gradient(rgba(47, 62, 56, 0.75), rgba(47, 62, 56, 0.75)), url('store_photo.jpg') center/cover no-repeat;
  color: white; text-align: center;
}

/* ================= GRID & CARDS ================= */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.expect-card img { width: 60px; height: 60px; margin-bottom: 20px; opacity: 0.8; }

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--action);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn:hover { transform: translateY(-2px); background: #3e594c; }
@media (max-width: 768px) {
  /* Global Header Fix */
  header { padding: 15px 20px !important; flex-direction: column; height: auto !important; }
  nav { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  nav a { margin: 0 !important; font-size: 0.8rem; }
  
  /* Hero Text Scaling */
  h1 { font-size: 2rem !important; letter-spacing: 4px !important; }
  
  /* Grid Stacking */
  .shop-grid, .stats-grid, .booking-wrapper, .product-container {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer Scaling */
  .footer-grid { grid-template-columns: 1fr !important; gap: 30px; }
}
