/*
Theme Name: Custom LMS Theme
Theme URI: None
Author: Me
Author URI: None
Description: Our 2019 default theme is designed to show off the power of the block editor. Requires at least: WordPress 4.9.6
Version: 0.1
License: GNU General Public License v2 or later
License URI: LICENSE
*/
/* section.hm-sec3 a span{
    position:absolute;
    top: 225px;
    right: 317px;
    font-size: 30px;
    color: #fff;
} */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Top Bar */
.top-bar {
  background-color: #2b2b2b;
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
  position: relative;
  z-index: 110; /* topbar hamesha upar rahe */
}
.top-bar a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}
.top-bar i {
  margin-right: 3px;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 32px; /* jitna approx top bar ka height hai utna niche shift */
  left: 0;
  width: 100%;
  background: transparent !important;
  padding: 0.4rem 0;
  z-index: 100;
}
.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.navbar .nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.navbar-nav .nav-link:hover {
  color: #fbbf24 !important;
}

/* Inquire Button */
.btn-inquire {
  background: #fbbf24;
  color: #000 !important;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
}
.btn-inquire:hover {
  background: #e0a91f;
}

/* Icons */
.nav-right a i {
  color: #fff;
  font-size: 16px;
  margin-left: 12px;
}
.nav-right a i:hover {
  color: #fbbf24;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("images/Hero\ Img.png") no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.hero h1 {
  position: relative;
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .navbar {
    margin-top: 20px; /* Top bar ke neeche thoda space */
  }
  .hero {
    padding-top: 100px; /* Hero text neeche shift ho jaye */
  }
}

.welcome-subtitle {
  font-style: italic;
  font-size: 38px; /* bada font */
  font-weight: 400;
  margin-bottom: 8px;
}

.welcome-divider {
  width: 300px; /* chhoti line */
  height: 2px;
  background-color: #000;
  margin: 0 auto 15px auto; /* center + neeche spacing */
}

.welcome-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.welcome-text {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
  word-break: normal; /* break nahi hoga */
  white-space: normal; /* flow me rahega */
}

/* Responsive */
@media (max-width: 767px) {
  .welcome-subtitle {
    font-size: 22px;
  }
  .welcome-title {
    font-size: 24px;
  }
  .welcome-text {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 12px;
  }
}

/* Existing styles (for reference) */
.experience-card {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease; /* image scale transition */
}

.experience-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.5s ease;
}

.experience-card span {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  writing-mode: vertical-rl; /* vertical text */
  transform: rotate(180deg); /* upright */
  z-index: 2;
  letter-spacing: 1px;
  transition: writing-mode 0.5s ease, transform 0.5s ease, font-size 0.5s ease;
}

/* Hover effect */
.experience-card:hover {
  transform: scale(1.05); /* image expand a bit */
}

.experience-card:hover::after {
  background: rgba(0, 0, 0, 0.2); /* overlay lighten on hover */
}

.experience-card:hover span {
  writing-mode: horizontal-tb; /* text becomes horizontal */
  transform: rotate(0deg); /* normal orientation */
  font-size: 24px; /* thoda bada text on hover */
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .experience-card {
    height: 300px;
  }
  .experience-card span {
    font-size: 18px;
  }
  .experience-card:hover span {
    font-size: 20px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.perfect-trip {
  padding: 60px 0;
  text-align: center;
}

/* Swiper container */
.tripSwiper {
  overflow: visible; /* peek effect enable */
  padding-bottom: 40px;
}

/* Slide Cards */
.trip-card {
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
}

.trip-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}

/* Custom arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #e0c36f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Discover Button */
.btn-discover {
  background-color: #d4a017;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.btn-discover:hover {
  background-color: #b38713;
}

/* Responsive */
@media (max-width: 991px) {
  .trip-card {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .trip-card {
    height: 180px;
  }
}

/* Section Background */
.create-recipe {
  position: relative;
  background: url("images/Recipe\ Img.png") no-repeat center center/cover;
  color: #fff;
  min-height: 400px; /* adjust according to design */
}

/* Full Overlay */
.create-recipe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* black overlay */
  z-index: 1;
}

/* Content wrapper */
.create-recipe .container {
  position: relative;
  z-index: 2; /* above overlay */
  padding: 100px 20px;
  text-align: center;
}

/* Headings */
.create-recipe .main-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.create-recipe .sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Paragraph */
.create-recipe .desc {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Button */
.btn-recipe {
  display: inline-block;
  background: #d4a017;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}
.btn-recipe:hover {
  background: #b38713;
}

/* Responsive */
@media (max-width: 767px) {
  .create-recipe .main-title {
    font-size: 28px;
  }
  .create-recipe .sub-title {
    font-size: 16px;
  }
  .create-recipe .desc {
    font-size: 14px;
  }
}

/* Section */
.latest-articles {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Swiper container */
.articlesSwiper {
  overflow: visible;
  padding-bottom: 40px;
}

/* Article Card */
.article-card {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-content {
  padding: 15px;
}

.date-badge {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.article-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.btn-read {
  display: inline-block;
  background: #d4a017;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.btn-read:hover {
  background: #b38713;
}

/* Custom arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #e0c36f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
  .article-card img {
    height: 160px;
  }
}

@media (max-width: 767px) {
  .article-card img {
    height: 140px;
  }
}

.newsletter {
  background: #333;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

.newsletter-box {
  display: flex;
  align-items: center; /* content middle aligned */
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Image lifted up */
.newsletter-img {
  flex: 1;
  min-width: 280px;
}
.newsletter-img img {
  max-width: 100%;
  border-radius: 6px;
  display: block;
  margin-top: -90px; /* image ko section ke bahar upar le jao */
}

.newsletter-content {
  flex: 1;
  min-width: 280px;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #ddd;
}

/* Form */
.newsletter-form {
  position: relative;
  border-bottom: 1px solid #777;
  max-width: 400px;
}

.newsletter-form input {
  width: 100%;
  padding: 10px 50px 10px 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #aaa;
}

/* Send Button */
.newsletter-form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 767px) {
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .newsletter-content {
    text-align: center;
  }
  .newsletter-form {
    margin: 0 auto;
  }
  .newsletter-img img {
    margin-top: -30px; /* mobile pe thoda kam overlap */
  }
}

.footer {
  background: #1e1e1e;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 14px;
}

/* Main footer box */
.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left column */
.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-about {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-time {
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffcc00;
  color: #1e1e1e;
  font-size: 18px;
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #fff;
  color: #000;
}

/* Right side (Quick Links + Contact Info) */
.footer-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #ffcc00;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #ccc;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-right {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-box {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    flex-direction: column;
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}
