/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6f22;
  --primary-dark: #ffffff;
  --secondary: #e74c3c;
  --accent: #f1c40f;
  --orange: #e67e22;
  --orange-dark: #d35400;
  --dark: #232323;
  --light: #ecf0f1;
  --white: #ffffff;
  --gray: #95a5a6;
  --light-gray: #f5f5f5;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: #c0392b;
}

.nav-menu a.btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  transform: none;
  display: inline-block;
  text-align: center;
}

.nav-menu a.btn:hover {
  background-color: var(--orange-dark);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--orange);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-scrolled {
  padding: 5px 0;
  background-color: var(--white);
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 20px;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  color: var(--orange);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  overflow-x: auto;
  padding-bottom: 5px;
  /* Ẩn thanh cuộn nhưng vẫn cho phép cuộn */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.nav-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.nav-menu li {
  margin: 0 10px;
  white-space: nowrap;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  display: block;
  text-align: center;
  padding: 5px 0;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-menu a.active {
  color: var(--orange);
}

.nav-menu a.btn.active {
  color: #ffffff;
}


.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 9px;
}

.hamburger span:nth-child(4) {
  top: 18px;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 100px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
  background-color: var(--light-gray);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.about-content p {
  margin-bottom: 20px;
}

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-box:hover .service-img {
  transform: scale(1.1);
}

.service-box .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  transform: translateY(0);
  transition: var(--transition);
}

.service-box:hover .service-content {
  transform: translateY(-10px);
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-name {
  font-weight: 600;
}

.author-title {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Access Section */
.access {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.access-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.access-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.access-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.access-image:hover img {
  transform: scale(1.05);
}

.access-content {
  flex: 1;
}

.access-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 600;
}

.access-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.access-content .btn {
  background-color: var(--orange);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}

.access-content .btn:hover {
  background-color: transparent;
  color: var(--orange);
}

@media (max-width: 992px) {
  .access-container {
    flex-direction: column;
  }
  
  .access-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .access-content {
    text-align: center;
    margin-top: 30px;
  }
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Gallery Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--white);
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  color: var(--primary);
  letter-spacing: 0.5px;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Booking Form Styles */
.booking-form {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.price-table th, .price-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.price-table th {
  background-color: var(--primary);
  color: var(--white);
}

.price-table tr:nth-child(even) {
  background-color: var(--light-gray);
}

.price-table tr:hover {
  background-color: rgba(52, 152, 219, 0.1);
}

/* Info Page Styles */
.info-section {
  padding: 40px 0;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-content h2 {
  margin-bottom: 20px;
}

.info-content p {
  margin-bottom: 15px;
}

.info-list {
  margin: 20px 0;
}

.info-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.info-list li::before {
  content: 'u2022';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

/* Ski Page Styles */
.ski-lessons {
  background-color: var(--light-gray);
}

.lesson-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.lesson-box {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.lesson-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.lesson-img {
  height: 200px;
}

.lesson-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesson-content {
  padding: 20px;
}

.lesson-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lesson-price {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.ski-map {
  margin: 50px 0;
  text-align: center;
}

.ski-map img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Service Page Styles */
.room-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.room-box {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-img {
  height: 250px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-content {
  padding: 20px;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.room-price {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.room-feature {
  display: flex;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 10px;
}

.room-feature i {
  margin-right: 5px;
  color: var(--primary);
}

.facilities-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.facility-item {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  transition: var(--transition);
}

.facility-item:hover {
  background-color: var(--primary);
  color: var(--white);
}

.facility-item:hover i {
  color: var(--white);
}

.facility-icon {
  margin-right: 15px;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Accommodation Info Section Styles */
.accommodation-info {
  padding: 80px 0;
  background-color: var(--white);
}

.accommodation-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.accommodation-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  display: inline-block;
}

.accommodation-text p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.amenities-list {
  margin-bottom: 30px;
}

.amenities-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.amenities-list li i {
  color: var(--orange);
  margin-right: 10px;
  font-size: 1.2rem;
  min-width: 25px;
}

.distance-list {
  margin-bottom: 30px;
}

.distance-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.distance-list li::before {
  content: '→';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.popular-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.popular-facilities span {
  background-color: var(--light-gray);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.popular-facilities span:hover {
  background-color: var(--orange);
  color: var(--white);
}

.popular-facilities span i {
  margin-right: 8px;
  color: var(--orange);
}

.popular-facilities span:hover i {
  color: var(--white);
}

.booking-container {
  position: sticky;
  top: 100px;
}

.booking-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 25px;
  border: 1px solid var(--light-gray);
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  text-align: center;
}

.booking-card p {
  margin-bottom: 15px;
}

.booking-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  margin: 20px 0;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.booking-btn:hover {
  background-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.booking-btn i {
  margin-left: 8px;
}

.booking-info {
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.booking-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.booking-info p:last-child {
  margin-bottom: 0;
}

.booking-info i {
  color: var(--orange);
  margin-right: 8px;
  min-width: 20px;
}

/* Ski Banner */
.ski-banner {
  padding: 30px 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.ski-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.banner-intro {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.banner-intro p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.banner-intro .notice {
  color: #e74c3c;
  font-weight: 500;
  margin-top: 20px;
  font-size: 0.95rem;
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.resort-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.resort-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.resort-info {
  padding: 20px;
}

.resort-info h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.resort-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 10px 0 5px;
}

.distance {
  color: #e74c3c;
  font-weight: bold;
  margin-left: 5px;
}

.resort-name-en {
  color: #7f8c8d;
  font-style: italic;
  margin: 5px 0;
}

.walk-time {
  color: #3498db;
  font-weight: 500;
  margin: 5px 0;
}

.opening {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  color: #27ae60;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resort-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .banner-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .resort-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .resort-info h3 {
    font-size: 1.1rem;
  }
  
  .resort-name {
    font-size: 1rem;
  }
  
  .resort-name-en, .walk-time, .opening {
    font-size: 0.9rem;
  }
}

/* Access Section */
.access-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

.access-content {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.access-content h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.access-content h4 {
  color: var(--dark);
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.access-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.access-list {
  margin: 15px 0 20px 20px;
}

.access-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.access-list li:before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
}

.note {
  background-color: #fff9e6;
  padding: 12px 15px;
  border-radius: 5px;
  border-right: 4px solid #ffd700;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
  .access-container {
    flex-direction: column;
  }
  
  .map-container,
  .access-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .access-content {
    padding: 20px 15px;
  }
  
  .access-content h3 {
    font-size: 1.3rem;
  }
  
  .access-content h4 {
    font-size: 1.1rem;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-container,
  .contact-container,
  .info-container,
  .accommodation-details {
    grid-template-columns: 1fr;
  }
  
  .booking-container {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-container,
  .features-container,
  .testimonials-container,
  .gallery-container,
  .lesson-container,
  .room-container,
  .facilities-container {
    grid-template-columns: 1fr;
  }
  
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
