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

:root {
    --gold: #D4AF37;
    --gold-light: #E8C874;
    --dark: #1A1A1A;
    --light: #F8F6F2;
    --gray: #8C8C8C;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Add to the top of your CSS */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Modern Fancy Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: white;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-right: 15px;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.4) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 700px;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Room Details */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Replace the existing .room-gallery styles */
.room-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 768px) {
  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.gallery-main {
  height: 300px;
  grid-column: 1;
}

@media (min-width: 768px) {
  .gallery-main {
    grid-column: span 2;
    height: 400px;
  }
}

/* .gallery-main {
    grid-column: span 2;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
} */

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

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

.gallery-thumb {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

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

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

.room-info {
    padding: 20px;
}

.room-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray);
    font-size: 14px;
}

.room-price {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
}

.price-tag span {
    font-size: 18px;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.price-note {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

/* Amenities Section */
.amenities {
    background: white;
    padding: 100px 5%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 50px 5%;
}

/* Replace the existing .amenities-grid styles */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--light);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.amenity-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.amenity-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.3)), url('../images/gallery/fasad\ 1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Update booking section */
.booking-section {
  border-radius: 0;
  margin: 50px 0;
  padding: 100px 5%;
}

/* Add to prevent image overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .booking-section {
    border-radius: 20px;
    margin: 50px 5%;
  }
}
.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.booking-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 5% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Update footer */
.footer-content {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .room-details {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 52px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumb {
        height: 140px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Add to media queries */
@media (max-width: 600px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-bottom: 10px;
  }
}