@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Rural Bliss - Rustic Elegant Palette */
  --color-primary: #3A5A40;
  /* Forest Green */
  --color-secondary: #A3B18A;
  /* Sage Green */
  --color-accent: #EF5350;
  /* Coral/Salmon (Airbnb) */
  --color-accent-blue: #003580;
  /* Booking.com Blue */

  --color-background: #F9F9F7;
  /* Warm Cream/Off-White */
  --color-surface: #FFFFFF;
  /* Pure White */
  --color-surface-translucent: rgba(255, 255, 255, 0.9);

  --color-text: #1A1A1A;
  /* Almost Black */
  --color-text-light: #4A4A4A;
  /* Dark Grey */
  --color-text-lighter: #666666;
  /* Light Grey */

  --color-border: #E0E0E0;
  /* Light Border */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 2rem;
  /* 32px */
  --spacing-lg: 4rem;
  /* 64px */
  --spacing-xl: 8rem;
  /* 128px */

  /* Border Radius - Rounded/Soft */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows - Soft & Modern */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-lg) 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.95;
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--color-text);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* Navbar.css */
.navbar {
    background-color: var(--color-surface-translucent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.booking-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--color-border);
    }

    .navbar-links.active {
        transform: translateY(0);
    }

    .navbar-toggle {
        display: flex;
    }
}

/* Footer.css */
.footer {
    background-color: #2E4632;
    color: white;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.footer h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer h4 {
    color: #A3B18A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.footer p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    background-color: #253829;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Home.css */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: var(--color-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    min-width: 180px;
}

.btn-airbnb {
    background-color: #FF5A5F;
    color: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-airbnb:hover {
    background-color: #E0484D;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-booking {
    background-color: #003580;
    color: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-booking:hover {
    background-color: #002860;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-section {
    padding: 6rem 0;
    overflow-x: hidden;
}

.about-layout {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image-wrapper {
    width: 60%;
    position: relative;
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.image-accent-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.about-content-card {
    width: 50%;
    background-color: var(--color-surface);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-left: -10%;
    position: relative;
    z-index: 2;
}

.overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.about-content-card h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content-card p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Home Features */
.features-section {
    background-color: var(--color-background);
    padding-top: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Home Rooms Teaser */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.room-card-preview {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.room-card-preview:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.room-preview-img {
    height: 240px;
    background-color: #ccc;
    position: relative;
}

.room-preview-img.color-1 { background-color: #B5C99A; }
.room-preview-img.color-2 { background-color: #97A97C; }
.room-preview-img.color-3 { background-color: #87986A; }

.room-image-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

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

.room-card-preview:hover .room-image {
    transform: scale(1.05);
}

.room-preview-content {
    padding: 2rem;
    text-align: center;
}

.room-preview-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.btn-link {
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.btn-link:hover {
    border-color: var(--color-primary);
}

/* Home Reviews */
.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card-home {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.review-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text-home {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.review-author strong {
    color: var(--color-text);
    font-weight: 600;
}

.review-platform {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
    }

    .about-image-wrapper {
        width: 100%;
        margin-bottom: -2rem;
    }

    .about-image-wrapper img {
        aspect-ratio: 16/9;
    }

    .about-content-card {
        width: 90%;
        margin-left: 0;
        padding: 2rem;
    }

    .image-accent-border {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-card {
        padding: 2rem;
    }
    
    .home-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Accommodations.css */
.page-header {
    background-color: var(--color-primary);
    color: white;
    padding: 6rem 0 4rem;
    /* margin-top: 80px; removed sticky quirk */
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.rooms-grid-large {
    display: grid;
    gap: 4rem;
}

.room-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.room-card-large:nth-child(even) .room-img-wrapper {
    order: 2;
}

.room-img-wrapper {
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

.room-card-large:hover .room-img-wrapper img {
    transform: scale(1.03);
}

.room-content {
    padding: 2rem;
}

.room-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.room-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline-dark:hover {
    background-color: var(--color-primary);
    color: white;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .room-card-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .room-card-large:nth-child(even) .room-img-wrapper {
        order: 0;
    }

    .room-img-wrapper {
        height: 250px;
    }
}

/* RoomDetails.css */
.room-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
}

.room-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.room-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.room-hero-overlay .container {
    width: 100%;
    text-align: center;
}

.room-hero-overlay h1 {
    color: #FFFFFF !important;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
    letter-spacing: 1px;
}

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

.full-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 3rem;
    white-space: pre-line;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
}

.amenities-list li {
    background: #f5f5f5;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--color-primary);
}

.room-gallery {
    margin: 3rem 0;
}

.room-gallery h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.gallery-grid {
    /* Using same class as gallery page but adjusted context */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}

.price-tag {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    margin: 1rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Gallery.css */
.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.image-overlay span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Reviews.css */
.reviews-page {
    /* padding-top: 80px; removed sticky quirk */
}

.reviews-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.reviews-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.reviews-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.reviews-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.review-date {
    font-size: 0.9rem;
    color: var(--color-text-lighter);
    margin: 0.25rem 0 0 0;
}

.platform-badge {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.room-tag {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    font-weight: 500;
}

.review-text {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 1rem;
}

.no-reviews {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-lighter);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .reviews-header h1 {
        font-size: 2rem;
    }

    .reviews-grid-page {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* Contact.css */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    font-size: 1.5rem;
    background-color: #EFEBE9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.map-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 0.9rem;
}

.external-booking {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.partner-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-outline-partner {
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 500;
}

.btn-outline-partner:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-partner.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form Styles */
.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-message h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    font-family: sans-serif;
}

.lightbox-close:hover {
    color: var(--color-accent);
}
