* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffdf6;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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;
  text-decoration: none;
  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;
  }
}

.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;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ad1457;
}

.tile-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #fffdf6;
}

.tile {
  background-color: #f8d7da;
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
}

.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;
}



.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;
}

.social-section {
  background-color: #fffdf6;
  padding: 3rem 1rem;
  text-align: center;
}

.social-section h2 {
  font-size: 2rem;
  color: #c2185b;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icons a {
  display: inline-block;
}

.social-icon {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}


.product-tile:hover {
  transform: translateY(-5px);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* increased from 220px */
  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;
  box-sizing: border-box;
}

.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;
}

/* ------------- LIGHTBOX STYLES ------------- */

.lightbox {
  display: none; /* hidden until an image is clicked */
  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);
}
footer {
  background: #ff69b4;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}



/* ------------- CONTACT US -------------------*/


.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  gap: 20px;
  text-align: center;        /* center text inside */
}

.left-side p {
  padding: 0 20px; /* 20px padding left and right */
  box-sizing: border-box; /* to include padding in width */
}


/* Right side: map */
.right-side {
  flex: 1;  /* half width */
}

/* Social section styling */
.contact-social-section h2 {
  color: #ff6f61;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icon {
  width: 50px;
  height: 50px;
  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);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .left-side, .right-side {
    flex: none;
    width: 100%;
  }
  
  .right-side {
    margin-top: 30px;
  }
}


/* ------------- 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);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.garden-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.garden-intro p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}