/* Base Styles */
:root {
    --primary: #1e6b52;
    --primary-light: #2d9d78;
    --secondary: #f97316;
    --light: #f0fdf4;
    --dark: #052e16;
    --gray: #6b7280;
    --light-gray: #e5e7eb;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 20px; /* Account for fixed top bar */
}

/* Top Bar - Fixed and Optimized */
.top-bar {
    background-color: var(--primary);
    height: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    color: white;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.top-bar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-bar .contact-info i {
    margin-right: 6px;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar .social-icons a {
    color: white;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.top-bar .social-icons a:hover {
    color: #a1d99b;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    background: linear-gradient(to right, #064635, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.subtitle {
    font-family: 'Playfair Display', cursive;
    font-size: 1.1rem;
    color: var(--primary);
    font-style: regular;
    letter-spacing: 0.03em;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn.primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px; /* Push navbar down to clear the top bar */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 
                0 6px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #1e6b52;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

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

.logo {
    height: 80px;
    overflow: hidden;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    text-decoration: none;
    color: var(--primary);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:active {
    transform: scale(0.95);
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    animation: fadeIn 1s ease;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: white;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

/* Booking.com blue color based on their branding */
.booking-btn {
    background-color: #003580;
    color: white;
    border: none;
}

.booking-btn:hover {
    background-color: #005bbf;
}

/* Explore rooms button - neutral color */
.explore-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1.5px solid #ccc;
}

.explore-btn:hover {
    background-color: #ddd;
}

/* Rooms Section */
.rooms {
    background-color: white;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid transparent;
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, rgba(30, 107, 82, 0.4), rgba(20, 92, 67, 0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.room-card:hover {
    border-color: rgba(30, 107, 82, 0.6);
    box-shadow: 0 10px 20px rgba(30, 107, 82, 0.3);
    transform: translateY(-10px);
}

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

.room-badge,
.room-number {
    position: absolute;
    top: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    user-select: none;
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  color: #111;
  border: 1px solid #1e6b52;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.room-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary);
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.room-content {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--primary);
    line-height: 1.1;
}

.room-content p {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.3;
    flex-grow: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 10px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  background-color: #f3f4f6;
  color: #1f2937;
  white-space: nowrap;
}

.amenity-tag:hover {
    background-color: #e0f2fe;
    color: #0c4a6e;
    cursor: default;
}

.wifi-tag {
  background-color: #e0f2fe;
  color: #0369a1;
}
.breakfast-tag {
  background-color: #fef9c3;
  color: #854d0e;
}
.hotwater-tag {
  background-color: #fee2e2;
  color: #991b1b;
}
.tv-tag {
  background-color: #ede9fe;
  color: #5b21b6;
}
.ac-tag {
  background-color: #e0f7fa;
  color: #006064;
}
.balcony-tag {
  background-color: #f0fdf4;
  color: #15803d;
}
.fridge-tag {
  background-color: #fef3c7;
  color: #92400e;
}
.safe-tag {
  background-color: #f3f4f6;
  color: #374151;
}
.laundry-tag {
  background-color: #e0e7ff;
  color: #1e3a8a;
}
.default-tag {
  background-color: #f3f4f6;
  color: #1f2937;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.price small {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}

.book-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.book-btn:hover {
    background-color: var(--primary-light);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #f0fdf4, white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border: 2px solid #a5d6a7;
    border-radius: 15px;
    padding: 30px;
    color: black;
    text-align: center;
    box-shadow: 0 4px 10px rgba(165, 214, 167, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(165, 214, 167, 0.5);
}

.service-icon {
    background: #e8f5e9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2e7d32;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
    transition: box-shadow 0.3s ease;
}

.service-icon:hover {
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.6);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1b5e20;
    text-shadow: 0 1px 2px rgba(27, 94, 32, 0.3);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: black;
}

/* Awards Section */
.awards {
    background: linear-gradient(to bottom, white, #f0fdf4);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin: 50px 0 0;
  padding: 0 40px;
}

.award-card {
    background-color: #f9f9f4;
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 30px;
    color: #333;
    text-align: center;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.award-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 10px #d4af37;
}

.award-badge {
    background-color: #d4af37;
    color: #1e4620;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.award-icon {
    background: radial-gradient(circle at center, #fff9e6, #d4af37);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #2e7d32;
    font-size: 2.2rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transition: box-shadow 0.3s ease;
}

.award-icon:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
}

.award-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(212, 175, 55, 0.4);
}

.award-card p:first-of-type {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.award-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-date {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #ddd;
    padding: 3px 8px;
    border-radius: 15px;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author p:first-child {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-author p:last-child {
    font-size: 0.85rem;
    color: #777;
}

/* Gallery Section */
.gallery {
    background-color: #f0fdf4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 200px;
    transition: all 0.3s ease;
}

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

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

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

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #f0fdf4, #dcfce7);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.management-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.management-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.management-card .name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.management-card p {
    text-align: center;
    color: var(--gray);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-about .logo i {
    font-size: 1.8rem;
    color: white;
}

.footer-about .logo h3 {
    font-size: 1.5rem;
    color: white;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    columns: 2;
    column-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-newsletter p {
    color: #d1fae5;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
}

.footer-newsletter button:hover {
    background-color: #ea580c;
}

.footer-bottom {
    border-top: 1px solid #2d9d78;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #d1fae5;
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
}

/* Contact Section Styles */
.contact-section {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info, .contact-form {
    flex: 1 1 45%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-info h2, .contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form form button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 6px;
}

.contact-map iframe {
    border-radius: 10px;
    width: 100%;
    height: 350px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Combined contact card styling */
.combined-contact-card {
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.contact-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-group ul {
    list-style: none;
    padding-left: 0;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-group ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-group ul li i {
    color: var(--primary);
    min-width: 20px;
}

.contact-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.card-equal {
    flex: 1 1 48%;
    border: 1px solid #e5e7eb;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.fancy-subtitle {
    all: unset;
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .award-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-main {
        flex-direction: column;
    }
    .card-equal {
        flex: 1 1 100%;
    }
    .combined-contact-card {
        margin-bottom: 30px;
    }
}

/* Modal Styling */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.booking-modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
}

/* Optional WhatsApp Button Style */
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  border: none;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  margin: 8px 4px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  background-color: #007bff; /* Default blue button */
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* Optional: differentiate button styles */
.booking-btn { background-color: #007bff; }   /* Blue */
.whatsapp-btn { background-color: #25D366; }  /* WhatsApp green */
.email-btn { background-color: #6c757d; }     /* Gray */
.call-btn { background-color: #28a745; }      /* Green */

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: default;
  transition: all 0.2s ease;
  border: 2px solid var(--accent-color, #888);
  color: var(--accent-color, #888);
  background-color: transparent;
}

.amenity-icon:hover {
  background-color: var(--accent-color, #888);
  color: white;
  transform: scale(1.05);
}

.fa-wifi        { --accent-color: #4caf50; }  /* Green */
.fa-fan         { --accent-color: #2196f3; }  /* Blue */
.fa-toilet      { --accent-color: #9c27b0; }  /* Purple */
.fa-bug         { --accent-color: #ff5722; }  /* Orange-Red */
.fa-mug-hot     { --accent-color: #ff9800; }  /* Amber */
.fa-tree        { --accent-color: #4caf50; }  /* Green */
.fa-building    { --accent-color: #3f51b5; }  /* Indigo */
.fa-tv          { --accent-color: #795548; }  /* Brown */
.fa-shower      { --accent-color: #00bcd4; }  /* Cyan */
.fa-wind        { --accent-color: #00acc1; }  /* Light Blue */

.room-booking {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.book-btn {
  padding: 10px 16px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.book-btn:hover {
  background-color: #388e3c;
}

.room-divider-fancy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 14px;
}

.room-divider-fancy::before,
.room-divider-fancy::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #ddd;
  margin: 0 10px;
}

.room-divider-fancy i {
  color: #aaa;
  font-size: 0.9rem;
}

.room-divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 8px 0 12px;
  width: 100%;
}

.gallery-filter {
  text-align: center;
  margin: 20px 0 10px;
}

.filter-btn {
  background: #f5f5f5;
  border: none;
  padding: 10px 16px;
  margin: 0 6px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #4caf50;
  color: #fff;
}

.gallery-item video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}






/* Hamburger button (hidden on large screens) */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
