/* ===================== GLOBAL STYLES ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ===================== NAVBAR ===================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 3em;
  background: #111;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc33;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5em;
}

.nav-links a {
  color: #fff;
  padding: 0.5em 0;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #ffcc33;
}

.nav-links a.active {
  color: #ffcc33;
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffcc33;
  border-radius: 2px;
}

/* ===================== MOBILE NAVBAR ===================== */
.menu-btn {
  display: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #ffcc33;
  background: none;
  border: none;
  padding: 0.2em;
  z-index: 1001;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1em;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #111;
    flex-direction: column;
    align-items: start;
    padding: 6em 2em 2em;
    gap: 2em;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 204, 51, 0.1);
    padding-bottom: 1em;
  }

  .nav-links a {
    font-size: 1.3rem;
    display: block;
    padding: 0.5em 0;
    width: 100%;
  }
}

/* ===================== HERO SECTION ===================== */
.hero, .page-header {
  position: relative;
  text-align: center;
  color: #fff;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* ===================== PAGE BACKGROUNDS ===================== */

/* Home Page Background */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('images/Background.png') center/cover no-repeat;
}

/* Activities Page Background */
.page-header.activities-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Booking Page Background */
.page-header.booking-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Furniture Page Background */
.page-header.furniture-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Furniture Hiring Background */
.page-header.hire-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Contact Page Background */
.page-header.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* Fallback background */
.hero::after, .page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  z-index: -1;
  opacity: 0.3;
}

.hero-overlay, .page-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content, .header-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 3em 2em;
  width: 100%;
}

/* ===================== SIMPLE STATIC TEXT (NO ANIMATIONS) ===================== */
.static-hero-text {
  text-align: center;
  margin-bottom: 3em;
}

.static-hero-text h1 {
  font-size: 4.5rem;
  color: #ffcc33;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.static-hero-text p {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 2em;
  margin-top: 3em;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.btn-hero {
  display: inline-block;
  padding: 18px 50px;
  background: #111;
  color: #ffcc33;
  border: 3px solid #ffcc33;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.btn-hero:hover {
  background: #ffcc33;
  color: #111;
  transform: translateY(-3px);
}

.btn-hero-outline {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  color: #ffcc33;
  border: 3px solid #ffcc33;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: #ffcc33;
  color: #111;
  transform: translateY(-3px);
}

/* ===================== SECTIONS ===================== */
.activities-preview,
.highlights,
.booking-section,
.hire-form-section,
.furniture-grid-section {
  padding: 6em 2em;
  text-align: center;
  background: #111;
}

.section-title {
  color: #ffcc33;
  font-size: 3.5rem;
  margin-bottom: 1.5em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 5px;
  background: #ffcc33;
  border-radius: 3px;
}

.book-btn-container {
  margin-top: 4em;
  text-align: center;
}

/* ===================== ACTIVITIES SECTION ===================== */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5em;
  max-width: 1400px;
  margin: 0 auto;
}

.activity-card {
  background: #1a1a1a;
  border-radius: 25px;
  overflow: hidden;
}

.activity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.activity-card h3 {
  margin: 1.5em 0 1em 0;
  color: #ffcc33;
  font-size: 2rem;
  padding: 0 1.5em;
  font-weight: 600;
}

.activity-description {
  padding: 0 2em 2em 2em;
  color: #ccc;
  min-height: 100px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.activity-btn {
  margin: 0 2em 2em;
  padding: 14px 35px;
  background: #111;
  color: #ffcc33;
  border: 2px solid #ffcc33;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  width: calc(100% - 4em);
}

.activity-btn:hover {
  background: #ffcc33;
  color: #111;
}

/* ===================== ACTIVITY GALLERY ===================== */
.activity-gallery {
  padding: 6em 2em;
  background: #0a0a0a;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
  max-width: 1400px;
  margin: 3em auto 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2em 1.5em 1.5em;
  text-align: left;
}

.gallery-overlay h3 {
  color: #ffcc33;
  margin: 0;
  font-size: 1.4rem;
}

/* ===================== HIGHLIGHTS ===================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3em;
  max-width: 1400px;
  margin: 3em auto 0;
}

.highlight-card {
  background: #1a1a1a;
  padding: 3em 2.5em;
  border-radius: 25px;
}

.highlight-card h3 {
  color: #ffcc33;
  margin-bottom: 1em;
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.8em;
  font-weight: 600;
}

.highlight-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ffcc33;
}

.highlight-card p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===================== BOOKING SECTION ===================== */
.booking-card,
.hire-form-container {
  background: #1a1a1a;
  border-radius: 30px;
  max-width: 650px;
  margin: 0 auto;
  padding: 4em;
}

.booking-form,
.hire-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.booking-form label,
.hire-form label {
  display: block;
  text-align: left;
  margin-bottom: 0.8em;
  font-weight: 600;
  color: #ffcc33;
  font-size: 1.2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.hire-form input,
.hire-form select {
  width: 100%;
  padding: 18px 22px;
  border-radius: 15px;
  border: 2px solid #555;
  background: #252525;
  color: #fff;
  font-size: 1.2em;
  font-family: 'Poppins', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.hire-form input:focus,
.hire-form select:focus {
  border-color: #ffcc33;
  outline: none;
  background: #2a2a2a;
}

.booking-form textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-book {
  margin-top: 2em;
  width: 100%;
  padding: 20px;
  background: #111;
  color: #ffcc33;
  font-weight: 600;
  border: 3px solid #ffcc33;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #ffcc33;
  color: #111;
  transform: translateY(-3px);
}

/* ===================== FURNITURE PAGE ===================== */
.furniture-grid-section {
  background: #111;
}

.furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5em;
  max-width: 1400px;
  margin: 0 auto;
}

.furniture-grid .item {
  background: #1a1a1a;
  border-radius: 25px;
  overflow: hidden;
}

.furniture-grid .item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.furniture-grid .item h3 {
  color: #ffcc33;
  margin: 1.5em 0 1em 0;
  font-size: 2rem;
  padding: 0 1.5em;
  text-align: center;
  font-weight: 600;
}

.view-details-btn {
  margin: 0 2em 2em;
  padding: 14px 35px;
  background: #111;
  color: #ffcc33;
  border: 2px solid #ffcc33;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  width: calc(100% - 4em);
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: #ffcc33;
  color: #111;
  transform: translateY(-3px);
}

/* ===================== MODAL ===================== */
#furnitureModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#furnitureModal.active {
  display: flex;
}

.modal-content {
  background: #1a1a1a;
  padding: 4em;
  border-radius: 30px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  border: 3px solid #ffcc33;
  animation: popupSlide 0.4s ease;
}

.modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  background: #000;
  border-radius: 20px;
  margin-bottom: 2em;
  border: 3px solid #ffcc33;
  padding: 15px;
}

.close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #ffcc33;
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10001;
  transition: all 0.3s ease;
}

.close:hover {
  color: #fff;
  background: rgba(255, 204, 51, 0.2);
  transform: rotate(90deg);
}

.modal-details {
  color: #fff;
  margin: 1.5em 0;
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 0 1em;
}

.modal-price {
  color: #ffcc33;
  font-weight: bold;
  font-size: 2.2rem;
  margin-top: 1.5em;
  padding: 0.8em 1.5em;
  background: rgba(255, 204, 51, 0.15);
  border-radius: 15px;
  display: inline-block;
}

/* ===================== THANK YOU POPUP ===================== */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.thank-you-popup.active {
  display: flex;
}

.popup-content {
  background: #1a1a1a;
  padding: 4em 3em;
  border-radius: 25px;
  text-align: center;
  color: #ffcc33;
  max-width: 500px;
  width: 90%;
  border: 3px solid #ffcc33;
  animation: slideUp 0.4s ease;
  position: relative;
}

.popup-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1em;
  color: #ffcc33;
}

.popup-content p {
  color: #fff;
  margin-bottom: 2em;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: center;
}

.popup-content strong {
  color: #ffcc33;
  font-weight: 600;
}

.popup-content .btn-book {
  width: 200px;
  margin-top: 1em;
}

/* Popup animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 4em 2em;
  background: #0a0a0a;
  color: #ffcc33;
  margin-top: 3em;
  border-top: 4px solid #ffcc33;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.contact-info {
  margin-top: 2em;
  color: #fff;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.social-icons a {
  color: #ffcc33;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffcc33;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #111;
  background: #ffcc33;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

/* Individual icon hover colors */
.social-icons a:hover i.fa-facebook-f {
  color: #1877F2;
}
.social-icons a:hover i.fa-instagram {
  color: #E4405F;
}
.social-icons a:hover i.fa-tiktok {
  color: #000000;
}
.social-icons a:hover i.fa-youtube {
  color: #FF0000;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
  .static-hero-text h1 {
    font-size: 3.5rem;
  }
  
  .static-hero-text p {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .popup-content {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1em 2em;
  }
  
  .static-hero-text h1 {
    font-size: 3rem;
  }
  
  .static-hero-text p {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .activity-grid,
  .highlights-grid,
  .furniture-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero, .page-header {
    min-height: 600px;
  }
  
  .popup-content {
    padding: 3em 2em;
  }
  
  .popup-content h3 {
    font-size: 2.2rem;
  }
  
  .popup-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero, .page-header {
    height: 80vh;
    min-height: 500px;
  }
  
  .static-hero-text h1 {
    font-size: 2.5rem;
  }
  
  .static-hero-text p {
    font-size: 1.1rem;
  }
  
  .btn-hero,
  .btn-hero-outline {
    padding: 16px 40px;
    font-size: 1.1em;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .activities-preview,
  .highlights,
  .booking-section,
  .hire-form-section,
  .furniture-grid-section,
  .activity-gallery {
    padding: 4em 1em;
  }
  
  .activity-grid,
  .highlights-grid,
  .furniture-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }
  
  .booking-card,
  .hire-form-container {
    padding: 3em 2em;
  }
  
  .modal-content,
  .popup-content {
    padding: 3em 2em;
  }
  
  .page-header {
    min-height: 400px;
  }
  
  .activity-card img,
  .gallery-item,
  .furniture-grid .item img {
    height: 200px;
  }
  
  .activity-card h3,
  .furniture-grid .item h3 {
    font-size: 1.8rem;
  }
  
  .social-icons {
    gap: 1em;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .popup-content h3 {
    font-size: 2rem;
  }
  
  .popup-content p {
    font-size: 1.1rem;
  }
  
  .popup-content .btn-book {
    width: 180px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .static-hero-text h1 {
    font-size: 2rem;
  }
  
  .static-hero-text p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .booking-card,
  .hire-form-container {
    padding: 2.5em 1.5em;
  }
  
  .modal-content,
  .popup-content {
    padding: 2.5em 1.5em;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    gap: 1em;
  }
  
  .btn-hero,
  .btn-hero-outline {
    padding: 14px 30px;
    font-size: 1em;
    width: 100%;
    max-width: 280px;
  }
  
  .contact-info {
    font-size: 1rem;
  }
  
  .popup-content {
    padding: 2em 1.5em;
    margin: 1em;
  }
  
  .popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8em;
  }
  
  .popup-content p {
    font-size: 1rem;
    margin-bottom: 1.5em;
  }
  
  .popup-content .btn-book {
    width: 160px;
    padding: 14px;
    font-size: 1.1em;
  }
}/* ===================== HERO FADE ANIMATIONS ===================== */
.static-hero-text, .hero-buttons {
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.static-hero-text.fade-out {
  opacity: 0 !important;
  transform: translateY(-30px) !important;
  pointer-events: none;
}

.hero-buttons.fade-out {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  pointer-events: none;
}

/* Optional: Add a "Show Again" button */
.show-content-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 204, 51, 0.2);
  color: #ffcc33;
  border: 2px solid #ffcc33;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(5px);
}

.show-content-btn.visible {
  opacity: 1;
}

.show-content-btn:hover {
  background: rgba(255, 204, 51, 0.3);
}