/* -----------------------------------------------------------
   1. BASE STYLES
----------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffdf6;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -----------------------------------------------------------
   2. GLOBAL CONTAINERS
----------------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -----------------------------------------------------------
   3. HEADER / NAVIGATION
----------------------------------------------------------- */
header {
  background-color: #ff4fa2;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ff69b4;
    padding: 1rem;
    border-radius: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* -----------------------------------------------------------
   4. HERO SECTION
----------------------------------------------------------- */
.hero {
  background: #fdd5e8;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c2185b;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #c2185b;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad1457;
}

/* -----------------------------------------------------------
   5. TILE SECTION
----------------------------------------------------------- */
.tile-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
  background-color: #fff;
}

.tile {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tile:hover,
.product-tile:hover {
  transform: translateY(-5px);
}

.tile h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #b30000;
}

.tile p {
  font-size: 1rem;
  color: #5a1b1b;
  line-height: 1.5;
}

/* -----------------------------------------------------------
   6. PRODUCT GRID
----------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.product-tile {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.product-tile img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.product-tile h3 {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}

/* -----------------------------------------------------------
   7. LIGHTBOX
----------------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* -----------------------------------------------------------
   8. FULL MAP SECTION
----------------------------------------------------------- */
.full-map-section {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.full-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* -----------------------------------------------------------
   9. CONTACT SECTION
----------------------------------------------------------- */
.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.left-side p {
  padding: 0 20px;
  box-sizing: border-box;
}

.right-side {
  flex: 1;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    flex: none;
    width: 100%;
  }

  .right-side {
    margin-top: 30px;
  }
}

/* -----------------------------------------------------------
   10. SOCIAL SECTION
----------------------------------------------------------- */
.social-section,
.contact-social-section {
  background-color: #fffdf6;
  padding: 3rem 1rem;
  text-align: center;
}

.social-section h2,
.contact-social-section h2 {
  font-size: 2rem;
  color: #c2185b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  filter: grayscale(40%);
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  filter: none;
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------------------------
   11. GARDEN GAMES
----------------------------------------------------------- */
.garden-intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.garden-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.garden-intro p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* -----------------------------------------------------------
   12. TILE NAVIGATION GRID
----------------------------------------------------------- */
.section-tiles {
  padding: 2rem;
  background-color: #f8f8f8;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-tile {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.nav-tile:hover {
  transform: scale(1.03);
}

.nav-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.nav-tile h3 {
  margin: 0.75rem 0;
  font-size: 1.2rem;
}

/* -----------------------------------------------------------
   13. SECTION HEADINGS
----------------------------------------------------------- */
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.section-subheading {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

/* -----------------------------------------------------------
   14. FOOTER
----------------------------------------------------------- */
footer {
  background: #ff69b4;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}