/* ==========================
   Custom Style for Hotel Lotus Park - Updated Step 1: Fonts
   ========================== */

:root {
  --primary: #000035;
  --accent: #c80053;
  --cream: #f5e4c1;
  --gold: #bc8a07;
  --white: #ffffff;
  --gray: #f5f2e6;
  --text-dark: #222;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
}

.nav a {
  font-family: var(--font-body);
  font-weight: 500;
}

.book-btn,
.book-now-btn,
.btn-highlight,
.view-gallery-btn {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
}

.about-simple .tagline,
.about-simple .description,
.about-simple .gratitude,
.property-highlights small,
.facility p,
.contact-details li p,
.contact-left p,
.contact-right li,
.gallery h2 {
  font-family: var(--font-body);
}

.footer-contact,
.site-footer {
  font-family: var(--font-body);
}



/* ========== Reusable Components ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-highlight {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
}

.btn-highlight:hover {
  background-color: var(--primary);
}

/* ========== Header ========== */
.site-header {
  background: var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.book-btn {
  background-color: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  transition: var(--transition);
}

.book-btn:hover {
  opacity: 0.9;
}

.menu-toggle {
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  margin-left: auto;
}

/* ========== HERO SECTION FONTS AND STYLES ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); /* stronger */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 850px;
  color: #fff;
  z-index: 3;
  animation: fadeInUp 1.2s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-main-text {
  font-family: 'Brush Script MT', cursive;
  font-size: clamp(4rem, 6vw, 5rem);
  font-weight: 50;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6); /* soft glow */
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-subtext {
  font-family: 'Allura', cursive;
  font-size: 2.9rem;
  color: var(--gold);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4); /* subtle glow */
  margin-bottom: 0px;
}


/* CTA Button */
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(200, 0, 83, 0.3);
}

.hero-btn:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 0, 83, 0.5);
}


/* ========== About Section ========== */
.about-simple {
  padding: 80px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.about-center {
  max-width: 900px;
  margin: 0 auto;
}

.about-simple h2 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-simple .tagline {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 30px;
}

.about-simple .description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-simple .gratitude {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
}

/* ========== Property Highlights ========== */
.property-highlights {
  padding: 80px 20px;
  background-color: var(--gray);
  text-align: center;
}

.property-highlights h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.highlight-content {
  padding: 20px;
}

.highlight-content small {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: bold;
}

.highlight-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 10px 0;
}

/* ========== Facilities Section ========== */
.facilities-section {
  padding: 80px 20px;
  background-color: #fff9f9;
  text-align: center;
}

.facilities-section h2 {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 30px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.facility {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.facility p {
  font-weight: 500;
  color: #333;
}

/* ========== Gallery Section ========== */
.gallery {
  padding: 80px 20px;
  background-color: var(--gray);
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery .grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: var(--transition);
}

.gallery .grid img:hover {
  transform: scale(1.03);
}

.view-gallery-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
}

.view-gallery-btn:hover {
  background-color: #000035;
}

/* =============================
   NEARBY PLACES SECTION
============================= */
.nearby-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.nearby-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.nearby-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.nearby-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.nearby-carousel {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.nearby-card {
  flex: 0 0 100%;
  margin: 0 10px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
}

.nearby-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nearby-info {
  padding: 15px;
}

.nearby-info h3 {
  color: #000035;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.nearby-info p {
  font-size: 0.95rem;
  color: #555;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
  opacity: 1;
}

.slider-btn:focus {
  outline: 2px solid var(--gold);
}

.slider-btn.prev {
  left: 1px;
}

.slider-btn.next {
  right: 1px;
}

@media (min-width: 768px) {
  .nearby-card {
    flex: 0 0 33.3333%;
  }

}


/* ========== Footer ========== */
.footer-contact {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 6px 0px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.contact-right {
  flex: 1;
  min-width: 280px;
  padding-left: 60px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-details li img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.social-section span {
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.social-icons img:hover {
  opacity: 0.8;
}

.footer-divider {
  border: none;
  border-top: 0.5px solid var(--white);
  margin: 40px 0 0;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: transparent;
  border-radius: 50%;
  transition: var(--transition);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========== Media Queries ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    background-color: var(--primary);
  }

  .nav.active {
    display: flex;
  }

  .hero-slider {
    height: 75vh;
  }

  /*.hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }*/

  .hero-main-text {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

 
  .hero-subtext {
    font-size: 2rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-right {
    padding-left: 0;
  }

 .contact-details li {
    display: flex;
    flex-direction: row;       /* Align icon + text horizontally */
    align-items: center;       /* Center vertically */
    gap: 8px;                 /* Space between icon and text */
    flex-wrap: nowrap;        /* Prevent wrapping (adjust if needed) */
    text-align: left;         /* Align text to left (default) */
}

 .footer-contact {
    padding: 40px 20px;
  }

  
 .nearby-title {
    font-size: 1.5rem;
  }
  

@media (max-width: 480px) {
  .hero-text {
    padding: 20px;
  }
  
  .about-simple h2 {
    font-size: 2rem;
  }
  
  .highlight-grid,
  .gallery .grid {
    grid-template-columns: 1fr;
  }
}

}

