/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Inter, sans-serif;
  line-height: 1.45;
  background: #fff;
  color: #222;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s cubic-bezier(.2,.9,.3,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  /* ✅ Transparent initially */
  background: transparent;
  transition: background 0.3s ease;
}

/* When scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
}

.logo { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.logo img { height: 42px; }
.nav-links { display: flex; list-style: none; gap: 22px; }
.nav-links a { color:#fff; text-decoration:none; }
.nav-links a.active { border-bottom:2px solid #fff; }
.hamburger { display:none; background:none; border:0; cursor:pointer; }
.hamburger span { display:block; width:26px; height:3px; background:#fff; margin:5px 0; }

/* Sidebar */
.sidebar {
  position: fixed; right:-100%; top:0; height:100%; width:280px;
  background:#0a58ca; padding:28px 18px; transition:right .3s ease; z-index:1200;
}
.sidebar.active { right:0; }
.close-btn { position:absolute; top:12px; right:12px; font-size:28px; color:#fff; background:none; border:0; cursor:pointer; }
.sidebar ul { list-style:none; margin-top:60px; }
.sidebar li { margin:18px 0; }
.sidebar a { color:#fff; text-decoration:none; font-size:18px; }

/* Hero */
.hero-rooms {
  position: relative;
  height: 90vh;
  background: url('images/rooms-hero.jpg') no-repeat center center/cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* slanted bottom */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-overlay h1 { color:#fff; font-size:40px; }
.hero-rooms::after {
  content:""; position:absolute; bottom:-1px; left:0; right:0; height:80px;

}




/* Section Styling for room types */
.rooms-section {
  padding: 6rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Roboto', serif;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
}

/* Grid Layout */
.rooms-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.rooms-grid.single {
  justify-content: center;
}

/* Room Card */
.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  flex: 1 1 45%;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-info {
  padding: 1.5rem;
}

.room-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-info p {
  color: #555;
  font-size: 1rem;
}
#roooms{
  font-size: 20px;
  text-align: center;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 300px;
}

.carousel-images img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-images img.active {
  opacity: 1;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0);
  border: none;
  color: transparent;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.carousel-dots span {
  display: block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots span.active {
  background: #c8ad6a;
}

.explore-btn-wrapper {
  text-align: center;
}

.explore-btn {
  position: relative;
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 2px solid #c8ad6a;
  color: #663433;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  overflow: hidden;
  transition: color 0.3s ease;
}

.explore-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #c8ad6a;
  transition: left 0.4s ease;
  z-index: -1;
}

.explore-btn:hover::before {
  left: 0;
}

.explore-btn:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .rooms-grid {
    flex-direction: column;
    align-items: center;
  }
}







/* Masonry Gallery Section */
.masonry-gallery {
  padding: 60px 5%;
  background: #fff;
  justify-content: center;
}

.masonry {
  column-count: 3.5;         /* Number of columns on desktop */
  column-gap: 15px;
}

.masonry img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
  break-inside: avoid;     /* Prevents image breaking */
  transition: transform 0.3s ease;
  cursor: pointer;
}

.masonry img:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry {
    column-count: 1;
  }
}



.mediterranean-section {
  text-align: center;
  padding: 60px 5%;
  background: #fff;
}

.mediterranean-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  max-height: 600px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

/* Number Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-nav span {
  cursor: pointer;
  font-size: 16px;
  color: #999;
  transition: color 0.3s, transform 0.3s;
}

.carousel-nav span.active {
  color: #333;
  font-weight: bold;
  transform: scale(1.2);
}









/* Footer */
#sha{
  height: 100px;
  width: 200px;
}
.footer {
  background: #7d7979; /* dark background */
  color: #111;
  padding: 60px 40px;
  font-family: Arial, sans-serif;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%); /* slanted top */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Footer Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
}
.footer-logo h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.footer-logo p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Section Headings */
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #111; /* gold-like color */
  font-weight: 600;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #3a5ab2;
}

/* Contact Info */
.footer-col p {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-col strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-col {
    text-align: center;
  }
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #0a58ca; /* maroon from your logo */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #fff; /* gold from your logo */
  transform: scale(1.2);
}