:root {
  --primary-color: #2c3e50;
  --secondary-color: #27ae60;
  --accent-color: #c0392b;
  --bg-color: #fdfdfd;
  --text-color: #333;
  --light-bg: #f4f4f4;
  --white: #ffffff;
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--primary-color);
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    transform 0.2s,
    background-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: #a93226;
  transform: translateY(-2px);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.logo-container {
  display: block;
  text-decoration: none;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  transition: all 0.3s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
.logo-text:hover {
  color: #f1c40f;
}
.logo-highlight {
  color: #f1c40f;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 0;
  transition: color 0.3s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background-color: #f1c40f;
  transition: width 0.3s ease-in-out;
}
.nav-links a:not(.btn):hover::after {
  width: 100%;
  left: 0;
}
.nav-links a:not(.btn):hover {
  color: var(--secondary-color);
}
.nav-links .btn {
  background: linear-gradient(135deg, var(--secondary-color), #219150);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.nav-links .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
  background: linear-gradient(135deg, #219150, var(--secondary-color));
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-color);
}
.hero {
  height: 100vh;
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(20, 50, 30, 0.6)),
    url("assets/images/resort1.jpg");
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  animation: heroZoom 20s infinite alternate;
}
.hero-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  max-width: 800px;
  width: 90%;
  z-index: 2;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes heroZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}
.animate-text {
  animation: fadeInUpText 1s ease-out forwards;
}
@keyframes fadeInUpText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.section-divider .shape-fill {
  fill: var(--light-bg);
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.feature-card {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}
.stat-item {
  flex: 1;
  min-width: 200px;
}
.stat-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.counter {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.counter::after {
  content: "+";
  color: var(--secondary-color);
  font-size: 2.5rem;
  vertical-align: super;
}
.stat-item p {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid var(--secondary-color);
}
.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.room-card:hover img {
  transform: scale(1.05);
}
.room-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.room-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-family: var(--font-body);
}
.price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
}
.amenities {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.amenities li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.amenities li i {
  color: var(--secondary-color);
  width: 25px;
  margin-right: 5px;
}
.room-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
  flex-grow: 1;
}
.room-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: auto;
}
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}
.btn-whatsapp:hover {
  background-color: #128c7e;
}
.btn-call {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}
.btn-call:hover {
  background-color: var(--secondary-color);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.contact-item i {
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 25px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
}
.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
  gap: 30px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-content:hover {
  animation-play-state: paused;
}
.review-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 300px;
  max-width: 300px;
  white-space: normal;
  text-align: left;
  border-left: 4px solid var(--secondary-color);
}
.review-card .stars {
  color: #f1c40f;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.review-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.review-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
  text-align: right;
}
footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 60px;
  padding-bottom: 20px;
  font-family: var(--font-body);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}
.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p {
  color: #ddd;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #ddd;
}
.footer-contact i {
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition:
    background 0.3s,
    transform 0.3s;
}
.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}
.floating-actions {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: auto;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 1000;
  gap: 10px;
}
.action-btn {
  flex: 0;
  width: auto;
  padding: 12px 20px 12px 15px;
  border-radius: 30px 0 0 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  transition:
    transform 0.3s,
    width 0.3s;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
  margin-right: -5px;
}
.action-btn:hover {
  transform: translateX(-5px);
  margin-right: 0;
}
.call-btn {
  background-color: var(--primary-color);
}
.whatsapp-btn {
  background-color: #25d366;
}
.email-btn {
  background-color: #ea4335;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-actions {
    top: auto;
    bottom: 20px;
    right: 10px;
    transform: none;
  }
  .action-btn {
    padding: 10px 15px;
    border-radius: 50px;
    margin-right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* --- About Section Redesign --- */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary-color);
  border-bottom: 3px solid #f1c40f; /* Gold underline */
}

.about-description {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Feature Grid Update */
.features-grid {
  display: flex; /* Changed from grid for better list flow */
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateX(10px); /* Slide right effect */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: #e8f5e9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

/* Right Side Image Frame */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 0px rgba(39, 174, 96, 0.2); /* Offset shadow frame */
  border: 5px solid white;
}

.image-frame img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Mobile Responsiveness for About */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .section-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-description {
    text-align: center;
  }

  .image-frame {
    box-shadow: 10px 10px 0px rgba(39, 174, 96, 0.2);
  }
}

/* --- Dining Parallax Section --- */
.parallax-dining {
  background-image: url("assets/images/dining.png");
  height: 60vh; /* Full screen height impact */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark overlay for readability */
.parallax-dining::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 80px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: white;
  max-width: 700px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.glass-card p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Dining Specific Styles */
.dining-card {
  max-width: 800px;
  padding: 40px 60px;
}

.dining-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #f1c40f; /* Gold color */
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}

.dining-desc {
  line-height: 1.8;
  margin-bottom: 30px;
}

.dining-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 10px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.dining-features li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-align: left;
}

.dining-features i {
  color: #f1c40f;
  font-size: 1.2rem;
}

/* Mobile Adjustments for Dining */
@media (max-width: 768px) {
  .parallax-dining {
    background-attachment: scroll; /* Disable fixed attachment on mobile for performance */
    height: 50vh;
  }

  .glass-card {
    width: 90%;
    padding: 30px 20px;
  }

  .glass-card h2 {
    font-size: 2.2rem;
  }
}
