/* ================================
   GLOBAL VARIABLES
================================ */
:root {
  --brown: #5a3e2b;
  --cream: #fff7ed;
  --dark-bg: #121212;
  --dark-card: #1e1e1e;
  --text-light: #eaeaea;
}

/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--cream);
  color: #333;
  line-height: 1.6;
}

/* ================================
   DARK MODE
================================ */
body.dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

body.dark nav,
body.dark .card,
body.dark footer {
  background: var(--dark-card);
}

/* ================================
   NAVBAR
================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

nav h1 {
  color: var(--brown);
  font-size: 24px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

nav button {
  margin-left: 20px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ================================
   SECTIONS
================================ */
section {
  padding: 70px 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 36px;
  color: var(--brown);
}

/* ================================
   GRID & CARDS
================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* ================================
   GALLERY
================================ */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* ================================
   MAP
================================ */
iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 14px;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

/* ================================
   FLOATING BUTTONS
================================ */
.float-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.call-btn {
  background: #000;
}

.whatsapp-btn {
  background: #25d366;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .hero h2 {
    font-size: 34px;
  }

  section {
    padding: 60px 20px;
  }
}
