/* Reset + Global */
/* Navbar */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR STYLES */

.top-bar {
  background-color: #0356A6;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.navbar {
  background: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  height: 2cm;
  margin-top: 30px;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  
  width: 120px;
  background-color: #004899;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #0356A6;
  font-size: 16px;
}

.navbar-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.call {
  font-size: 14px;
  color: #0356A6;
}

.book-btn {
  background-color: #0356A6;
  color: white;
  border: none;
  padding: 7px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Sub nav */
.sub-nav {
  background-color: #0356A6;
}

.sub-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  gap: 20px;
}

.sub-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 10px 0;
    position: absolute;
    top: 60px;
    left: 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Slider Styles */
.slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* Slider text overlay */
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 20px;
  width: 90%;
}

.slider-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.slider-text h1 span {
  color: #3a89d8;
  font-style: initial;
}

.slider-text p {
  font-size: 1.2rem;
  color: #ffffffcc;
}

@media (max-width: 768px) {

  .slider h1 {
    font-size: 2rem;
  }

  .slider-text h1 {
    font-size: 2rem;
  }

  .slider-text p {
    font-size: 1rem;
  }

}

/* OFFERINGS AT TULIP INN, ZIRAKPUR */
/* Offerings Section */
.offerings {
  text-align: center;
  padding: 60px 20px;
  background: #e3eaeb;
}

.offerings h2 {
  font-size: 2rem;
  color: #2b2b2b;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #0071b9;
  padding-bottom: 10px;
}

.offerings-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offering-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  text-align: justify;
}


.offering-card:hover {
  transform: translateY(-5px);
}

.offering-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.offering-card h3 {
  color: #005c99;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.offering-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .offerings-container {
    flex-direction: column;
    align-items: center;
  }
}


/* Footer */

.footer {
  background-color: #004899;
  color: #fff;
  text-align: center;
  padding: 30px 15px 10px;
}

.hotel-name {
  font-size: 16px;
  margin-bottom: 8px;
}

.hotel-address {
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.contact-info p {
  font-size: 14px;
  margin: 6px 0;
  display: flex;


}

.contact-info i {
  margin-right: 6px;
}

.get-in-touch {
  margin-top: 20px;
  font-size: 16px;
  font-weight: normal;
}

.social-icons {
  margin-top: 10px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  background: #fff;
  color: #004899;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 0 6px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background-color: #636583;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ccc;
  width: 90%;
  margin: 20px auto;
}

.footer-bottom {
  margin-top: 10px;
  padding-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credit {
  font-size: 13px;
  color: #fff;
}

.footer-credit a {
  color: #fff;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .social-icons a {
    margin: 4px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .hotel-address,
  .contact-info p {
    font-size: 13px;
  }
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
}

.contact-item i {
  margin-right: 6px;
  font-size: 16px;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 40%;
  padding: 15px;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;

}

.whatsapp-icon {
  display: inline-block;
}


/* Blogs */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: justify;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures image fills & crops nicely */
  display: block;
}

/* Optional Overlay Text on Image */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.overlay-text h1 {
  font-size: 3rem;
}

.blog-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #e3eaeb;


}

.blog-box {
  width: 100vw;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-hero-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.blog-meta {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.blog-meta h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333;
}

.author-date {
  font-size: 0.9rem;
  color: #777;
}

.blog-content {
  padding: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.blog-tags {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: #555;
}

.blog-tags span {
  background: #e1e1e1;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0 5px;
  display: inline-block;
}

.blog-share {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: #555;
}

.blog-share a {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-box {
    width: 90vw;
  }

  .blog-hero-image {
    height: 40vh;
  }

  .blog-meta h2 {
    font-size: 1.5rem;
  }
}