* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "EB Garamond",
    serif;

  line-height: 1.7;
  color: #123c35;
  background: #f6f5f2;
}

h1,
h2,
h3 {
  font-family:
    "Cormorant Garamond",
    serif;
}

header {
  min-height: 90vh;
 background:
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.52) 45%,
    rgba(0, 0, 0, 0.18) 78%
  ),
  url(images/hotram-hero1.webp) center/cover;
  color: white;
  display: flex;
  align-items: center;
  padding: 40px 8%;
  position: relative;
}

.hero {
  max-width: 720px;
  margin-top: 40px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.95;
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-weight: 450;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
   margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: #d7b06a;
  color: #0f2f29;

  padding: 15px 30px;

  border-radius: 999px;
  text-decoration: none;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 18px;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1;

  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

section {
  padding: 80px 8%;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  color: #173f35;
  font-weight: 500;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
  color: #52605d;
  font-size: 18px;
  line-height: 1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: white;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-bottom: 10px;
  color: #173f35;
}

.itinerary {
  background: #eaf3ef;
}
.itinerary .card {
  padding: 30px 26px;
}

.itinerary .card p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #52605d;
}

.price-box {
  background: #173f35;
  color: white;
  border-radius: 28px;
  padding: 36px;
  max-width: 760px;
}

.price {
  font-size: 52px;
  font-weight: 500;
  margin: 16px 0;
  color: #cfa96a;
  letter-spacing: -0.01em;
}
.price-box p {
  font-size: 18px;
  line-height: 1.95;
  color: rgba(255,255,255,0.9);
}

form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

input,
textarea,
 select{
  padding: 14px;
  border: 1px solid #d6dedb;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: "Manrope",
    sans-serif;
}

textarea {
  min-height: 120px;
}

button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

footer {
  width: 100%;
  padding: 40px 0 28px;
  background: #102c25;
  color: white;
  text-align: center;
  margin: 0;
}
footer p {
  line-height: 1.9;
  letter-spacing: 0.3px;
}
footer p span {
  font-size: 14px;
  opacity: 0.85;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.right-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 55px;
}

@media (max-width: 800px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.resort-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
  margin-top: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  object-position: center 40%;
}

.right-side {
  display: flex;
  flex-direction: column;
}

.small-note {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a817e;
  font-family:
    "Manrope",
    sans-serif;
}

.card {
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 75%;
  display: block;
}

.card-content {
  padding: 24px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #4d5a56;

}

.city-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media (min-width: 1024px) {
  .card-image {
    height: 230px;
  }

  .city-image {
    height: 320px;
  }
}
.card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.clickable-card {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 8%;
}

.modal-content {
  background: #f6f5f2;
  color: #123c35;
  max-width: 1040px;
  margin: 40px auto;
  border-radius: 28px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 32px;
}

.modal-content h2 {
  margin-bottom: 14px;
}

.modal-content p {
  margin-bottom: 10px;
  line-height: 1.9;
  max-width: 90%;
  font-size: 17px;
}

.close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  cursor: pointer;
}
.mini-gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  margin-top: 34px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.gallery-item {
  min-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 10px;
}

.gallery-item span {
  display: block;
  font-size: 14px;
  color: #6d7471;
  line-height: 1.5;
}

.mini-gallery::-webkit-scrollbar {
  height: 6px;
}

.mini-gallery::-webkit-scrollbar-thumb {
  background: #d6dedb;
  border-radius: 999px;
}
.city-slider {
  position: relative;
  margin-top: 34px;
}

.slider-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: #173f35;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-caption {
  margin-top: 18px;
}

.slider-caption h3 {
  margin-bottom: 8px;
  color: #173f35;
}

.slider-caption p {
  margin-bottom: 0;
  max-width: 100%;
}
.top-slider {
  margin-top: 0;
}

.top-slider .slider-btn {
  top: 50%;
}
.close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 34px;
  color: #1f3b35;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease;
}

.close:hover {
  opacity: 0.6;
}
.close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #123c35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.close:hover {
  transform: scale(1.06);
  background: white;
}
.card {
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.card img {
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card p {
  line-height: 1.7;
}
.city-note {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #8a918e;
  font-style: normal;
  line-height: 1.7;
}
select {
  color: #8a918e;
  background: white;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
}
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}
.location-content {
  max-width: 760px;
}

.location-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.location-section {
  padding-top: 50px;
  padding-bottom: 10px;
}

.location-section p {
  line-height: 1.9;
  color: #52605d;
}

@media (max-width: 800px) {
  .location-content {
    max-width: 100%;
  }
}

.location-secondary {
  font-size: 17px;
  color: #5e6764;
  line-height: 1.85;
  margin-top: -8px;
  max-width: 640px;
}
.why-section {
  padding-top: 20px;
}
.footer-contact {
  margin-top: 34px;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.82;
  line-height: 2;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  opacity: 0.75;
}
.about-section {
  background: #f6f5f2;
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-content {
  max-width: 760px;
}

.about-content p {
  color: #4a514e;
  font-size: 19px;
  line-height: 1.95;
  margin-bottom: 18px;
}
.policy-note {
  margin-top: 22px;
  max-width: 520px;
}

.policy-note p {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #5f6966;
}

.policy-note strong {
  color: #173f35;
  font-weight: 600;
}

.policy-note a {
  color: #173f35;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-page {
  min-height: 100vh;
  padding-top: 70px;
  padding: 80px 8%;
  background: #f6f5f2;
}

.policy-page-content {
  max-width: 720px;
}

.policy-page h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-weight: 550;
}

.policy-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #52605d;
  margin-bottom: 44px;
}

.policy-block {
  margin-bottom: 34px;
}

.policy-block h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #173f35;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.9;
  color: #52605d;
  margin-bottom: 10px;
}

.policy-block a,
.back-link {
  color: #173f35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  opacity: 0.74;
  text-decoration-thickness: 1px;
  letter-spacing: 0.01em;
}
.footer-links {
  margin-top: 22px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}
.footer-links {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.site-logo {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.header-logo {
  width: 240px;
  max-width: 42vw;
  opacity: 0.98;
  filter: brightness(1.25);
  opacity: 1;
  filter:
  brightness(1.45)
  contrast(1.08);
}
.itinerary .card h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.location-section .section-intro,
.why-section .section-intro {
  font-size: 18px;
  line-height: 1.85;
  color: #4a514e;
}
.location-secondary {
  color: #4a514e;
}
/* Functional UI */
.btn,
input,
textarea,
select,
button,
.small-note,
.policy-note,
footer {
  font-family: "Manrope", sans-serif;
}
.footer-logo {
  width: 150px;
  margin-bottom: 12px;
  opacity: 0.92;
}

.footer-tagline {
  font-size: 13px;
  opacity: 0.74;
  margin-bottom: 18px;
  letter-spacing: 0.02em; 
}

.footer-social {
  margin-top: 6px;
  margin-bottom: 2px;
}


.footer-copy {
  font-size: 13px;
  opacity: 0.62;
}
.footer-contact {
  margin-top: 12px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-links {
  margin-top: 4px;
}

.footer-copy {
  margin-top: 10px;
}
.instagram-icon {
  width: 40px;
  height: 40px;
  opacity: 0.72;
  filter: brightness(0) invert(1);
}

.instagram-icon:hover {
  opacity: 1;
}
.policy-block p,
.policy-page-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #4f5754;
}
.policy-page h1,
.policy-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #173f35;
}

.policy-page p {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  line-height: 1.95;
  color: #4f5754;
}

.policy-page a {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  color: #173f35;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.back-link {
  display: inline-block;
  margin-bottom: 56px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: #173f35;
  opacity: 0.62;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  letter-spacing: 0.01em;
}
.back-link:hover {
  opacity: 1;
}
.policy-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #173f35;
  margin-bottom: 22px;
}
.policy-page,
.policy-page p,
.policy-page a,
.policy-page li {
  font-family: "EB Garamond", serif;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
}
.inquiry-note {
  font-family: "EB Garamond", serif;
  font-size: 17.8px;
  line-height: 1.9;
  color: #5b6461;
  margin-top: 10px;
  max-width: 520px;
}


