/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

h2, h3 {
  color: black;
}

a {
  text-decoration: none;
  color: black;
}

button, .btn {
  padding: 10px 20px;
  background-color: #f39c12;
  color: black;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover, .btn:hover {
  background-color: #e67e22;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0s ease-in-out;
}

.bg1 {
  background-image: url('images/hm.jpg');
  z-index: 1;
  animation-delay: 0s;
}
.bg2 {
  background-image: url('images/ss1.jpg');
  z-index: 1;
  animation-delay: 0s;
}
.bg3 {
  background-image: url('images/bg1.jpg');
  z-index: 1;
  animation-delay: 0s;
}

.hero-content {
  z-index: 3;
  position: relative;
}

@keyframes fadeBG {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}





.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.service {
  background-color: #f39c12;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service i {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

.service:hover {
  transform: translateY(-10px);
}

/* Room Gallery Section */
.room-gallery {
  padding: 60px 20px;
  background-color: #ecf0f1;
}

.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.room-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.room-image img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.contact-details {
  font-size: 1.1rem;
  margin-top: 20px;
}

.contact-details p {
  margin: 10px 0;
}
/* Navbar Styles */
.navbar {
  background-color: #b5f972;
  padding: 10px 20px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #f39c12;
  border-radius: 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  color: black;
  font-size: 2rem;
}

/* Desktop View */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 30px;
  }
}

/* Mobile View */
@media screen and (max-width: 767px) {
  .nav-links {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #333;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 15px;
    color: black;
  }

  .nav-links a:hover {
    background-color: #f39c12;
    border-radius: 5px;
  }
}
.room-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 10px;
  flex-wrap: wrap;
}

.room-card {
  width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-info {
  padding: 20px;
}

.room-info h3 {
  font-size: 18px;
  color: #007BFF;
  margin-bottom: 10px;
}

.room-info p {
  font-size: 16px;
  color: #555;
}
.designer-link {
  color: #ff7f50;
  text-decoration: underline;
  font-weight: bold;
}

.designer-link:hover {
  color: #ffffff;
  text-decoration: underline dotted;
}
