@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #3bada6;
  --secondary-color: #2c8a85;
  --accent-color: #f8d57c;
  --budget-color: #28a745;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.95);
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* DESKTOP STYLES */
.left-half,
.right-half {
  height: 100vh;
  position: relative;
}

.left-half {
  background-image: url("/images/HomeBG.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.left-content {
  max-width: 500px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.budget-badge {
  display: inline-flex;
  align-items: center;
  background: var(--budget-color);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.budget-badge i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.left-content h1 {
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.left-content .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-item i {
  margin-right: 0.75rem;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.right-half {
  background: linear-gradient(to bottom right, #fffbde, #90d1ca, #129990, #096b68);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.welcome-section {
  background: var(--overlay-light);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.welcome-section::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.welcome-header {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0;
  line-height: 1.2;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto;
  border-radius: 2px;
}

.welcome-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  background: rgba(59, 173, 166, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(59, 173, 166, 0.1);
}

.pricing-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.price-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-notes small {
  color: #666;
  font-size: 0.8rem;
}

/* Schedule Section */
.schedule-section {
  background: rgba(248, 213, 124, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(248, 213, 124, 0.3);
}

.schedule-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.schedule-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.schedule-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
}

.schedule-item small {
  color: #666;
  font-size: 0.85rem;
}

.cta-section {
  text-align: center;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 173, 166, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 173, 166, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* LOGO STYLES */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-logo img {
  max-width: 120px;
  opacity: 0.95;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.center-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mobile-logo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.mobile-logo img {
  max-width: 60px;
  border-radius: 10px;
}

/* MOBILE LAYOUT STYLES */
.mobile-layout {
  min-height: 100vh;
}

.mobile-left-section {
  min-height: 60vh;
  background-image: url("/images/HomeBG.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.mobile-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  padding-top: 5rem;
}

.mobile-left-content {
  text-align: center;
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
}

.mobile-left-content h1 {
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mobile-left-content .lead {
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.mobile-feature-item {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.mobile-feature-item i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.mobile-feature-item[onclick] {
  cursor: pointer;
}

.mobile-right-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 2rem 1rem;
}

.mobile-welcome-section {
  background: var(--overlay-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mobile-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-cta-section {
  margin-bottom: 2rem;
}

/* Modal Styles */
.pricing-modal-content {
  border-radius: 0;
  border: none;
  position: relative;
  padding: 0;
  max-height: 90vh;
}

.pricing-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-modal-close:hover {
  background-color: #f8f9fa;
  transform: scale(1.1);
}

.pricing-modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
}

.pricing-modal-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 173, 166, 0.2);
}

.rate-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(59, 173, 166, 0.2);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(59, 173, 166, 0.02);
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(59, 173, 166, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(59, 173, 166, 0.1);
}

.room-section {
  border: 1px solid rgba(59, 173, 166, 0.2);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(59, 173, 166, 0.02);
}

.room-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.room-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.room-inclusions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-inclusions li {
  padding: 0.25rem 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.room-inclusions li:before {
  content: "✓ ";
  color: var(--budget-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.events-packages-section {
  background: rgba(248, 213, 124, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.event-package-item {
  border: 1px solid rgba(59, 173, 166, 0.2);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(59, 173, 166, 0.02);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.package-title {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.package-inclusions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-inclusions li {
  padding: 0.25rem 0;
  color: var(--text-dark);
  font-size: 0.85rem;
}

.package-inclusions li:before {
  content: "✓ ";
  color: var(--budget-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.food-packages-section {
  background: rgba(40, 167, 69, 0.05);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.food-package-item {
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(59, 173, 166, 0.1);
}

.contact-card {
  padding: 2rem;
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-info {
  background: rgba(59, 173, 166, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.location-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.operating-hours {
  background: rgba(248, 213, 124, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 576px) {
  .mobile-left-overlay {
    padding: 1.5rem 1rem;
    padding-top: 4rem;
  }

  .mobile-left-content h1 {
    font-size: 1.5rem;
  }

  .mobile-welcome-section {
    padding: 1.5rem;
  }

  .welcome-title {
    font-size: 1.6rem;
  }

  .mobile-logo {
    top: 0.75rem;
    left: 0.75rem;
  }

  .mobile-logo img {
    max-width: 50px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mobile-pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mobile-left-content .lead {
    font-size: 0.95rem;
  }

  .mobile-features-list {
    gap: 0.5rem;
  }

  .mobile-feature-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .welcome-description {
    font-size: 1rem;
  }
}

/* LANDSCAPE MOBILE */
@media (max-height: 600px) and (orientation: landscape) {
  .mobile-left-section {
    min-height: 50vh;
  }

  .mobile-left-overlay {
    padding-top: 3rem;
  }

  .mobile-left-content h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .mobile-left-content .lead {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .mobile-features-list {
    margin-top: 1rem;
  }
}

/* Book Now Button Styles */
.btn-success {
  background: #28a745;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  white-space: nowrap;
}

.btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.floating-book-btn .btn {
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-book-btn .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(40, 167, 69, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile floating button */
@media (max-width: 768px) {
  .floating-book-btn {
    bottom: 20px;
    right: 20px;
  }

  .floating-book-btn .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .pricing-modal-body {
    padding: 1.5rem;
  }

  .pricing-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

/* Enhanced CTA section spacing */
.cta-section {
  text-align: center;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.mobile-cta-section {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-cta-section .btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
}

.mobile-cta-section .btn i {
  font-size: 1rem;
}

/* Button group responsive behavior */
@media (max-width: 576px) {
  .cta-section {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
  }
}

/* FAQ Button */
.faq-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1055;
  background: #000;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-btn:hover {
  background: #4e4e4eff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.accordion-button {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.accordion-body {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

/* Minimalist Off-canvas */
.offcanvas {
  border: none;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.offcanvas-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 24px 16px;
}

.offcanvas-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close {
  font-size: 12px;
  opacity: 0.6;
}

.btn-close:hover {
  opacity: 1;
}

.offcanvas-body {
  padding: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-btn {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}
