@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Nunito+Sans:wght@700;800;900&display=swap");

:root {
  --color-primary: #1a365d;
  --color-accent: #c5a880;
  --color-background: #ffffff;
  --color-surface: #f7fafc;
  --color-surface-alt: #e2e8f0;
  --color-text: #333333;
  --color-text-secondary: #718096;
  --color-text-muted: #a0aec0;
  --color-text-light: #cbd5e0;
  --color-text-inverse: #ffffff;
  --color-border: #e2e8f0;
  --color-border-strong: #2d3748;

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-soft: 0 22px 70px rgba(26, 54, 93, 0.12);
  --shadow-card: 0 14px 38px rgba(26, 54, 93, 0.10);
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Manrope', sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
}

body {
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-accent);
  color: white;
  color: var(--color-primary);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn--full {
  display: block;
  width: 100%;
}

/* Header */
.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--color-background);
  text-decoration: none;
}

.logo span {
  color: var(--color-accent);
  margin-left: 4px;
}

.nav__link {
  color: var(--color-background);
  text-decoration: none;
  margin-right: 24px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.7)), url(/img/main.jpg) no-repeat center/cover;
  color: var(--color-text-inverse);
  text-align: center;
}

.hero__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__price-from {
  font-size: 14px;
  color: var(--color-accent);
}

/* Generic Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-secondary);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--color-surface);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about__text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--color-background);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-weight: 600;
  font-size: 15px;
}

.feature-card span {
  display: block;
  font-size: 30px;
  margin-bottom: 12px;
}

/* Rooms Section */
.rooms {
  padding: 100px 0;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background: var(--color-background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.room-card__img {
  height: 220px;
  width: 100%;
}
.room-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.room-card__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.room-card__price {
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 14px;
  margin-right: 8px;
}

.current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

/* Reviews */
.reviews {
  padding: 100px 0;
  background-color: var(--color-surface);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-item {
  background: var(--color-background);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.review-item__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-item__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 60px 0 30px 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__info a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer__copy {
  border-top: 1px solid var(--color-border-strong);
  padding-top: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

/* Adaptive Design */
@media(max-width: 992px) {
  .rooms__grid, .reviews__grid, .about__grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .hero__title {
    font-size: 36px;
  }
}