/* CSS Variables */
:root {
  --color-base: #1a1a1a;
  --color-main: #d4af37;
  --color-accent: #f8f8f8;
  --color-text: #2C2C2C;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --section-padding: 80px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-accent);
  background-color: var(--color-base);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

/* Section */
.section {
  padding: var(--section-padding) 0;
}

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

.section-title {
  color: var(--color-main);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-accent);
  opacity: 0.8;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-main);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-main);
}

.language-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--color-main);
  color: var(--color-base);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--color-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  color: var(--color-main);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--color-main);
  color: var(--color-base);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #f4c430;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--color-main);
  color: var(--color-base);
}

.cta-icon {
  width: 20px;
  height: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-main);
  opacity: 0.7;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

/* Concept Section */
.concept {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.concept-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(248, 248, 248, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.concept-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.concept-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--color-main);
}

.concept-title {
  color: var(--color-main);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.concept-description {
  color: var(--color-accent);
  opacity: 0.9;
  line-height: 1.8;
}

/* Rooms Section with Sticky Scroll */
.rooms {
  background: var(--color-base);
}

.rooms-sticky-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.rooms-images.sticky {
  position: relative;
}

.room-image {
  display: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.room-image.active {
  display: block;
}

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

.rooms-content {
  position: relative;
}

.room-details {
  display: none;
  padding: 2rem;
  background: rgba(248, 248, 248, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.room-details.active {
  display: block;
}

.room-title {
  color: var(--color-main);
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-main);
  padding-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature h4 {
  color: var(--color-main);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.feature p {
  color: var(--color-accent);
  opacity: 0.9;
  line-height: 1.8;
}

/* Wave Divider */
.wave-divider {
  position: relative;
  margin: -1px 0;
}

.wave-divider svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* Location Section */
.location {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.location-text {
  order: 2;
}

.location-description p {
  font-size: 1.2rem;
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.location-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.highlight {
  background: rgba(248, 248, 248, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight h4 {
  color: var(--color-main);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.highlight ul li {
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.highlight ul li::before {
  content: "•";
  color: var(--color-main);
  position: absolute;
  left: 0;
}

.location-map {
  order: 1;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: rgba(248, 248, 248, 0.1);
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-main);
  border-radius: 20px;
  text-align: center;
}

.map-icon {
  color: var(--color-main);
  margin-bottom: 1rem;
}

.map-icon svg {
  width: 48px;
  height: 48px;
}

.address {
  color: var(--color-accent);
  font-weight: 500;
}

/* Plans Section */
.plans {
  background: var(--color-base);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.1);
  border-color: var(--color-main);
}

.plan-card.featured {
  border-color: var(--color-main);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(248, 248, 248, 0.05) 100%);
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-main);
  color: var(--color-base);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 2rem;
}

.plan-name {
  color: var(--color-main);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-main);
  font-family: var(--font-heading);
}

.price-unit {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.plan-guest {
  color: var(--color-accent);
  opacity: 0.8;
}

.plan-features {
  margin-bottom: 3rem;
}

.plan-features ul {
  text-align: left;
}

.plan-features li {
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan-features li::before {
  content: "✓";
  color: var(--color-main);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.plan-cta {
  background: var(--color-main);
  color: var(--color-base);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.plan-cta:hover {
  background: #f4c430;
  transform: translateY(-2px);
}

.plan-note {
  text-align: center;
  color: var(--color-accent);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.review-card {
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.review-rating {
  margin-bottom: 2rem;
}

.stars {
  color: var(--color-main);
  font-size: 1.5rem;
}

.review-text {
  color: var(--color-accent);
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.review-text::before,
.review-text::after {
  content: '"';
  color: var(--color-main);
  font-size: 2rem;
  font-family: var(--font-heading);
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  text-align: center;
}

.author-name {
  color: var(--color-main);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-date,
.author-plan {
  color: var(--color-accent);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* Contact Section */
.contact {
  background: var(--color-base);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-method {
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  border-color: var(--color-main);
}

.method-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  color: var(--color-main);
}

.contact-method h3 {
  color: var(--color-main);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-method p {
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.method-link {
  color: var(--color-main);
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.method-link:hover {
  color: #f4c430;
  text-decoration: underline;
}

.method-time {
  color: var(--color-accent);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form {
  max-width: 100%;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--color-main);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background: rgba(248, 248, 248, 0.1);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-submit {
  background: var(--color-main);
  color: var(--color-base);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background: #f4c430;
  transform: translateY(-2px);
}

/* Access Section */
.access {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

.access-info {
  max-width: 800px;
  margin: 0 auto;
}

.access-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.detail-group {
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
}

.detail-group h3 {
  color: var(--color-main);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-main);
  padding-bottom: 0.5rem;
}

.address {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.transport {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.transport-method h4 {
  color: var(--color-main);
  margin-bottom: 1rem;
}

.transport-method p {
  color: var(--color-accent);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.checkin-info {
  margin-top: 1rem;
}

.checkin-info p {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.checkin-info strong {
  color: var(--color-main);
}

.note {
  color: var(--color-accent);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.guide-list {
  margin-top: 1rem;
}

.guide-list li {
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.guide-list li::before {
  content: "•";
  color: var(--color-main);
  position: absolute;
  left: 0;
}

.guide-list a {
  color: var(--color-main);
  transition: color 0.3s ease;
}

.guide-list a:hover {
  color: #f4c430;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--section-padding) 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  text-align: center;
}

.footer-brand .brand-name {
  color: var(--color-main);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.brand-tagline {
  color: var(--color-accent);
  opacity: 0.8;
  font-style: italic;
}

.footer-contact,
.footer-info {
  text-align: center;
}

.footer-contact h4,
.footer-info h4 {
  color: var(--color-main);
  margin-bottom: 1rem;
}

.footer-contact p,
.footer-info p {
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--color-main);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #f4c430;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-link {
  color: var(--color-main);
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #f4c430;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--color-accent);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-main);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-accent);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .concept-item {
    padding: 2.5rem;
  }

  .rooms-sticky-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .rooms-images.sticky {
    position: sticky;
    top: 120px;
  }

  .location-content {
    grid-template-columns: 1fr 1fr;
  }

  .location-text {
    order: 1;
  }

  .location-map {
    order: 2;
  }

  .location-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .access-details {
    grid-template-columns: 1fr;
  }

  .transport {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-contact,
  .footer-info {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Desktop Styles (1280px and up) */
@media (min-width: 1280px) {
  .hero-cta {
    gap: 3rem;
  }

  .concept-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-submit {
    width: auto;
    padding: 1.2rem 4rem;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 1rem 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .room-image img {
    height: 300px;
  }

  .plan-card {
    padding: 2rem 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .detail-group {
    padding: 2rem 1.5rem;
  }
}