/* ===================== GLOBAL STYLES ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* ===================== HEADER ===================== */
.header {
  background: #fff;
  border-bottom: 2px solid #ddd;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #222;
}

.header .tagline {
  font-size: 14px;
  color: #666;
}

.header .cta .btn {
  background: #00a859;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.header .cta .btn:hover {
  background: #007a45;
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  filter: brightness(70%);
}

.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero .hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero .hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero .hero-content .btn {
  background: #00a859;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.hero .hero-content .btn:hover {
  background: #007a45;
}

/* ===================== VIP SECTION ===================== */
.vip-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  background: #fff;
}

.vip-video {
  flex: 1 1 500px;
  max-width: 600px;
}

.vip-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.vip-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.vip-content h5 {
  color: #00a859;
  font-weight: 600;
  margin-bottom: 10px;
}

.vip-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.vip-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.vip-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.vip-features .feature {
  background: #f0f9f4;
  color: #00a859;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.vip-btn {
  background: #00a859;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.vip-btn:hover {
  background: #007a45;
}

/* ===================== APPROVALS / AMENITIES ===================== */
.approvals {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.approvals h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.approvals p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.approvals ul {
  list-style: none;
  display: inline-block;
  text-align: left;
  max-width: 700px;
}

.approvals ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

/* ===================== GALLERY ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 50px 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
}

/* Common gallery styles (both pages) */
.gallery {
  display: grid;
  gap: 20px;
  padding: 40px 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

/* Page 1 (page-home) - 4 columns */
.page-home .gallery {
  grid-template-columns: repeat(4, 1fr);
}

/* Page 2 (page-projects) - 3 columns */
.page-projects .gallery {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .page-home .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .page-projects .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .page-home .gallery,
  .page-projects .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .page-home .gallery,
  .page-projects .gallery {
    grid-template-columns: 1fr;
  }
}


/* ===================== PROJECT SECTION ===================== */
.project-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 60px 20px;
  background: #fff;
  margin-bottom: 20px;
}

.project-section .side-img {
  flex: 1 1 300px;
  max-width: 400px;
}

.project-section .side-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.project-section .center-box {
  flex: 2 1 500px;
  max-width: 700px;
}

.project-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.project-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.project-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download-btn {
  background: #00a859;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.download-btn:hover {
  background: #007a45;
}

/* ===================== CONTACT FORM ===================== */
.contact {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.contact button.btn {
  background: #00a859;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.contact button.btn:hover {
  background: #007a45;
}

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
  background: #1ebe57;
}

/* ===================== BLOG LINK ===================== */
.blog-link {
  text-align: center;
  padding: 20px;
  background: #fff;
}

.blog-link a {
  color: #00a859;
  font-weight: 600;
  text-decoration: none;
}

.blog-link a:hover {
  text-decoration: underline;
}

/* ===================== SOCIAL SECTION ===================== */
.social-section {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.social-section h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.social-links a {
  margin: 0 10px;
  color: #00a859;
  text-decoration: none;
  font-weight: 600;
}

.social-links a:hover {
  text-decoration: underline;
}

/* ===================== FOOTER ===================== */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  font-size: 14px;
}

/* ===================== MEDIA QUERIES ===================== */
@media (max-width: 1024px) {
  .vip-section,
  .project-section {
    flex-direction: column;
  }

  .hero .hero-content h1 {
    font-size: 36px;
  }

  .hero .hero-content p {
    font-size: 18px;
  }

  .project-section .center-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 28px;
  }

  .hero .hero-content p {
    font-size: 16px;
  }

  .vip-content h2 {
    font-size: 28px;
  }

  .vip-content p {
    font-size: 15px;
  }
}

