/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Albert Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #007fff;
  color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: #ffbd08;
  color: #000;
}

.btn-outline {
  background: transparent;
  color: #ffbd08;
  border: 1px solid #007fff;
}

.btn-outline:hover {
  background: #007fff;
  color: #fff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 50%;
  height: auto;
  position: relative;
}

.logo-site {
  width: 30%;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 12px;
}

.lang-btn {
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  color: #000;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.lang-btn.active {
  background: #007fff;
  color: #fff;
  border-color: #007fff;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007fff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/v6_58.png") center center/cover;
  margin-top: 86px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero.jpeg") center center/cover;
  z-index: 1;
  filter: brightness(0.3)
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 217, 217, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 40px;
}

.badge-bg {
  width: 148px;
  height: 48px;
  background: rgba(217, 217, 217, 0.5);
  border-radius: 50px;
}

.badge-text {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 20px;
  height: 20px;
  background: #ffbd08;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  color: #007fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

.section-description {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  background: #f6fcff;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-text {
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
  padding: 0 20px 20px 0
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 5px 5px #ededed;
}

.feature-icon-blue {
  background: #007fff;
  position: relative;
}

.feature-icon-orange {
  background: #ffb600;
  position: relative;
}

.feature-icon-yellow {
  background: #faea38;
  position: relative;
}

.feature-icon-green {
  background: #92de79;
  position: relative;
}

.amenity-wifi i, .amenity-parking i, .feature-icon-blue i, .amenity-access i, .feature-icon-orange i, .feature-icon-green i, .feature-icon-yellow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.section-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 561px;
  height: 373px;
  background: url("../images/v4_322.png") center center/cover;
  border-radius: 50px;
}

/* Rooms Section */
.rooms, .location {
  background: #fff;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding: 20px
}

.room-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-image {
  width: 100%;
  height: 269px;
  background-position: center;
  background-size: cover;
  border-radius: 20px 20px 0 0;
}

.room-image-1 {
  background-image: url("../images/v6_63.png");
}

.room-image-2 {
  background-image: url("../images/v6_67.png");
}

.room-image-3 {
  background-image: url("../images/v6_70.png");
}

.room-content {
  padding: 20px;
}

.room-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.room-description {
  font-size: 18px;
  font-weight: 300;
  color: #666;
}

/* Amenities Section */
.amenities {
  background: #f6fcff;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
  padding: 20px;
}

.amenity-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-icon {
  width: 47px;
  height: 47px;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.amenity-wifi {
  background: linear-gradient(#ff9400, #f8ecd5);
  position: relative;
}

.amenity-pool {
  background: linear-gradient(#0082d9, #d8effe);
  position: relative;
}

.amenity-pool::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 30px;
  background: url("../images/v16_149.png") center center/contain;
}

.amenity-parking {
  background: linear-gradient(#00d21c, #d0fbd6);
  position: relative;
}

.amenity-access {
  background: linear-gradient(#dbc501, #fffad2);
  position: relative;
}

.amenity-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.amenity-description {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.4;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.cta {
  position: relative;
  background: url("../images/experience-section.jpeg") center center/cover;
  color: #fff;
  text-align: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 25px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 30px;
  background-color: #0009;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(217, 217, 217, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 40px;
}

.cta-title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  text-wrap: balance;
}

.cta-description {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 25px;
  font-weight: 900;
  color: #ffbd08;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: center;
}

.footer-brand {
  max-width: 400px;
}

.logo-white {
  margin-bottom: 20px;
  justify-content: center;
}

.logo-icon-white {
  width: 49px;
  height: 21px;
  background: #fff;
  border-radius: 4px;
}

.logo-text-white {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.footer-description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.contact-info a {
  color: white;
}

.map {
  text-align:center;
}

.map-frame {
  width: 600px;
  height: 450px;
  border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .nav-wrapper {
    position: relative;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 86px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Keep language switcher inline and avoid overlapping hamburger */
  .lang-switch {
    position: static;
    margin-left: auto;
    gap: 6px;
    order: 2;
  }

  .hamburger {
    order: 3;
    margin-left: 8px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .hero-title {
    font-size: 36px;
  }

  .section-badge {
    text-align: center;
  }
  
  .section-title {
    font-size: 32px;
    text-align: center;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-text {
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 100%;
  }

  .section-text > a.btn.btn-primary {
    width: 20%;
    margin: auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px 70px;
  }
  
  .rooms-grid {
    grid-template-columns: 50%;
    justify-content: center;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px 70px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-badge {
    margin-bottom: 20px;
  }


  .logo-site{
    width: 50%;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav {
    padding: 30px 15px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .cta-title {
    font-size: 32px;
  }

  .amenities-grid, .features-grid, .rooms-grid {
    grid-template-columns: 1fr;
    
  }
  .amenities-grid, .features-grid {
    padding: 20px 20px;
  }

  .cta-buttons{
    flex-wrap: wrap;
  }

  .logo {
    width: 100%;
  }
  
  .logo-site {
    width: 100%;
  }
  .nav-wrapper .logo {
    width: 50%;
  }

  .section-text > a.btn.btn-primary {
    width: auto;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section Styles */
.gallery {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  background-color: #fff;
}

.gallery-item {
  display: none;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item.active {
  display: block;
}

/* Remove the fixed grid-column assignments */

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 20px 0;
}

.gallery-nav-btn {
  background: #007fff;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gallery-nav-btn:hover {
  background: #007fff;
  opacity: 0.5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gallery-indicators {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #000;
  transform: scale(1.2);
}

.gallery-dot:hover {
  background: #000;
  opacity: 0.7;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .gallery-navigation {
    gap: 20px;
  }
  
  .gallery-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 60px 0;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .gallery-navigation {
    gap: 15px;
  }
  
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .gallery-dot {
    width: 10px;
    height: 10px;
  }
}

/* Booking Popup Styles */
.booking-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.booking-popup.active {
  display: flex;
}

.booking-popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid #eee;
}

.booking-popup-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.booking-popup-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.booking-popup-close:hover {
  background: #f5f5f5;
  color: #000;
}

.booking-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  font-family: 'Albert Sans', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007fff;
  box-shadow: 0 0 0 3px rgba(0, 127, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.form-actions .btn {
  min-width: 120px;
}

/* Responsive Booking Popup */
@media (max-width: 768px) {
  .booking-popup-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .booking-popup-header {
    padding: 20px 20px 15px 20px;
  }
  
  .booking-popup-title {
    font-size: 20px;
  }
  
  .booking-form {
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-actions .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .booking-popup-content {
    width: 98%;
    border-radius: 15px;
  }
  
  .booking-popup-header {
    padding: 15px 15px 10px 15px;
  }
  
  .booking-form {
    padding: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
}
