/*!
Theme Name: Royal Pepper Resorts
Theme URI: http://underscores.me/
Author: usman gani
Author URI: http://www.marthub.com
Description: Royal Pepper Resorts
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: royal-pepper-resorts
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Royal Pepper Resorts is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
 .birthday-section {
      padding: 80px 0;
      background: linear-gradient(180deg, #fff8f9 0%, #fff 100%);
    }

    .birthday-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #cfaa7b;
      margin-bottom: 10px;
    }

    .birthday-subtitle {
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 50px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      color: #fff;
      opacity: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      text-align: center;
      padding: 20px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h5 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #ffb6c1;
      margin-bottom: 8px;
    }

    .gallery-overlay p {
      font-size: 0.9rem;
      color: #f8f9fa;
    }

    .btn-view {
      margin-top: 12px;
      background-color: #cfaa7b;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      transition: all 0.3s ease;
      text-decoration: none;
      font-weight: 500;
    }

    .btn-view:hover {
      background-color: #cfaa7b;
      color: #fff;
    }

/* Blog Slider Styles */
.blog-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.blog-slider .swiper-container {
    overflow: hidden;
    position: relative;
}


.wedding-gallery {
    width: 100%;
    position: relative;
}

.event-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.wedding-gallery-slider {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* .slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
} */
.slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 calc(100% / 6); /* 6 slides per view */
    box-sizing: border-box;
    padding: 5px;
}

.slide img {
   	width: 400px;
    display: block;
    height: 270px;
    border-radius: 4px;
}
/* .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}



.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: white;
} */

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slide-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background-color: white;
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider {
        height: 350px;
    }
    
    .slide-overlay {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
    }
}

.blog-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.blog-slider .swiper-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.blog-slider .swiper-button-next,
.blog-slider .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.blog-slider .swiper-button-next:hover,
.blog-slider .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}

.blog-slider .swiper-button-prev {
    left: 10px;
}

.blog-slider .swiper-button-next {
    right: 10px;
}

.blog-slider .swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.blog-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-slider .swiper-pagination-bullet.active {
    background: #000;
}

/* Responsive styles */
@media (min-width: 768px) {
    .blog-slider .swiper-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
}

@media (min-width: 1200px) {
    .blog-slider .swiper-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

/* Blog card styles */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8em;
    color: #666;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
}

.blog-card-meta i {
    margin-right: 5px;
}

.blog-card h3 {
    margin: 0 0 15px;
    font-size: 1.2em;
    line-height: 1.4;
}

.blog-card-excerpt {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: #d4a762;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: #b38a4a;
}

.blog-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

.contact-section-wrapper {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.contact_left {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.heading h2 span {
    color: #c89c64;
    position: relative;
}

.heading h2 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #c89c64, #d4af37);
    border-radius: 3px;
}

.heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.info:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.contact-icons {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #c89c64;
}

.contact-detail {
    margin: 0;
    font-size: 16px;
    color: #444;
}

.contact-detail span a {
    color: #c89c64;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-detail span a:hover {
    color: #a57c4a;
    text-decoration: underline;
}

.contact-image-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-img:hover {
    transform: scale(1.03);
}

.contact-form-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.elegant-form .heading {
    margin-bottom: 25px;
}

.form-group-enhanced {
    margin-bottom: 20px;
}

.elegant-input, .elegant-select, .elegant-textarea {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.elegant-input:focus, .elegant-select:focus, .elegant-textarea:focus {
    border-color: #c89c64;
    box-shadow: 0 0 0 3px rgba(200, 156, 100, 0.2);
    outline: none;
}

.elegant-textarea {
    min-height: 120px;
    resize: vertical;
}

.elegant-button {
    background: linear-gradient(to right, #c89c64, #d4af37);
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elegant-button:hover {
    background: linear-gradient(to right, #b38a52, #c19b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 156, 100, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section-wrapper {
        padding: 20px;
    }
    
    .contact_left, .contact-form-container {
        padding: 20px;
    }
    
    .info {
        padding: 12px;
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(200, 162, 125, 0.3) 100%); */
}
/* Mobile responsive */
@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr; /* single column */
    gap: 30px; /* reduce spacing for mobile */
  }
}
@media (max-width: 768px) {
    .gallery-filters {
        justify-content: flex-start;
    }

    .gallery-filters .filter-btn {
/*         flex: 1 1 calc(50% - 10px); /* 2 per row */ */
        font-size: 14px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
   
	
	
}
/* Tablet */
@media (max-width: 1024px) {
    .events-hero {
        padding: 0px 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .events-hero {
        padding: 40px 20px!important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .events-hero {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .location-content {
          display: inline!important;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
    }
}
/* Base Styles */
.contact {
    padding: 60px 20px;
}

.contact .heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact .heading p {
    font-size: 16px;
    line-height: 1.5;
}

/* Form Enhancements */
.elegant-form .form-control,
.elegant-form .elegant-input,
.elegant-form .elegant-select,
.elegant-form .elegant-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.elegant-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.elegant-form .form-group-enhanced {
    margin-bottom: 15px;
}

/* Contact Info Box */
.contact_left {
    padding-right: 20px;
}

.contact-detail {
    font-size: 15px;
}

.contact-image-container {
    margin-top: 20px;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .contact .row {
        flex-direction: column;
    }

    .contact .col-md-6,
    .contact .col-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact_left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact .heading h2 {
        font-size: 24px;
    }

    .contact .heading p {
        font-size: 14px;
    }

    .elegant-form .form-control,
    .elegant-form .elegant-input,
    .elegant-form .elegant-select,
    .elegant-form .elegant-textarea {
        font-size: 14px;
        padding: 9px 10px;
    }

    .btn.elegant-button {
        font-size: 16px;
        padding: 10px;
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 15px;
    }

    .contact .heading h2 {
        font-size: 22px;
    }

    .contact .heading p {
        font-size: 13px;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}
/* Base Styles */
.contact {
    padding: 60px 20px;
}

.contact .heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact .heading p {
    font-size: 16px;
    line-height: 1.5;
}

/* Form Enhancements */
.elegant-form .form-control,
.elegant-form .elegant-input,
.elegant-form .elegant-select,
.elegant-form .elegant-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.elegant-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.elegant-form .form-group-enhanced {
    margin-bottom: 15px;
}

/* Contact Info Box */
.contact_left {
    padding-right: 20px;
}

.contact-detail {
    font-size: 15px;
}

.contact-image-container {
    margin-top: 20px;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .contact .row {
        flex-direction: column;
    }

    .contact .col-md-6,
    .contact .col-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact_left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact .heading h2 {
        font-size: 24px;
    }

    .contact .heading p {
        font-size: 14px;
    }

    .elegant-form .form-control,
    .elegant-form .elegant-input,
    .elegant-form .elegant-select,
    .elegant-form .elegant-textarea {
        font-size: 14px;
        padding: 9px 10px;
    }

    .btn.elegant-button {
        font-size: 16px;
        padding: 10px;
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 15px;
    }

    .contact .heading h2 {
        font-size: 22px;
    }

    .contact .heading p {
        font-size: 13px;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

.royal-video-testimonials {
  padding: 70px 20px;
  background: #faf9f6;
  text-align: center;
}

.royal-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #3a2e2e;
}
.royal-heading p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Carousel */
.royal-carousel {
  position: relative;
  overflow: hidden;
}
.royal-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.royal-slide {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.royal-slide:hover { transform: translateY(-6px); }

/* Thumbnail */
.royal-thumb {
  position: relative;
}
.royal-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.royal-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(58, 46, 46, 0.85);
  color: #fff;
  border-radius: 50%;
  padding: 15px 18px;
  font-size: 22px;
}
.royal-slide:hover .royal-play { background: #b9975b; }

/* Info */
.royal-info { padding: 15px; }
.royal-info h4 { font-size: 18px; margin-bottom: 5px; color: #3a2e2e; }
.royal-info p { font-size: 14px; color: #777; }

/* Controls */
.royal-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3a2e2e;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}
.royal-control:hover { background: #b9975b; }
.royal-control.left { left: 10px; }
.royal-control.right { right: 10px; }

/* Modal */
.royal-video-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.royal-overlay-content {
  position: relative;
  width: 85%;
  max-width: 900px;
}
.royal-overlay-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
}
.royal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media(max-width:768px) {
  .royal-slide { flex: 0 0 240px; }
  .royal-overlay-content iframe { height: 300px; }
}


/* ======================
   NAVBAR STYLES
====================== */
.navbar {
  background: #fff;
  padding: 15px 0;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 50px;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu > li {
  margin: 0 15px;
}
.nav-menu a {
  text-decoration: none;
  color: #222;
  padding: 10px;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #d9232d; /* change color as needed */
}

/* Submenu */
.nav-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 9999;
}
.nav-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu li ul.sub-menu li {
  margin: 0;
}
.nav-menu li ul.sub-menu a {
  padding: 10px 15px;
  color: #333;
  font-weight: 400;
}
.nav-menu li ul.sub-menu a:hover {
  background: #f5f5f5;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  transition: all 0.3s ease;
}

/* ======================
   MOBILE MENU
====================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
/* .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */
.close-btn {
  font-size: 24px;
  cursor: pointer;
}
.mobile-nav {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.mobile-nav li {
  border-bottom: 1px solid #eee;
  position: relative;
}
.mobile-nav a {
  display: block;
  padding: 12px;
  color: #333;
  font-weight: 500;
}
.mobile-nav .sub-menu {
  display: none;
  padding-left: 15px;
  background: #fafafa;
}
.mobile-nav .submenu-toggle {
  position: absolute;
  right: 15px;
  top: 14px;
  cursor: pointer;
  font-size: 14px;
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


/* ======================
   NAVBAR STYLES
====================== */
.navbar {
  background: #fff;
  padding: 15px 0;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 50px;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu > li {
  margin: 0 15px;
}
.nav-menu a {
  text-decoration: none;
  color: #222;
  padding: 10px;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #d9232d; /* highlight color */
}

/* Desktop Submenu */
.nav-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 9999;
}
.nav-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu li ul.sub-menu li {
  margin: 0;
}
.nav-menu li ul.sub-menu a {
  padding: 10px 15px;
  color: #333;
  font-weight: 400;
}
.nav-menu li ul.sub-menu a:hover {
  background: #f5f5f5;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  transition: all 0.3s ease;
}

/* ======================
   MOBILE MENU
====================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
/* .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */
.close-btn {
  font-size: 24px;
  cursor: pointer;
}
.mobile-nav {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.mobile-nav li {
  border-bottom: 1px solid #eee;
  position: relative;
}
.mobile-nav a {
  display: block;
  padding: 12px;
  color: #333;
  font-weight: 500;
}
.mobile-nav .sub-menu {
  display: none;
  padding-left: 15px;
  background: #fafafa;
}
.mobile-nav .submenu-toggle {
	display:none;
  position: absolute;
  right: 15px;
  top: 14px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
* Mobile menu styles */
@media (max-width: 991px) {
    .navbar nav ul {
        flex-direction: column;
    }

    .navbar nav ul li {
        width: 100%;
    }

    .navbar nav ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }

    /* Optional: add an arrow indicator */
    .menu-item-has-children > a::after {
        content: "▼";
        font-size: 0.8rem;
        margin-left: 8px;
        transition: transform 0.3s;
    }

    /* Rotate arrow when submenu is open */
    .menu-item-has-children.open > a::after {
        transform: rotate(-180deg);
    }
}

.slider-prev .slick-slide .slick-current .slick-active {
	width:40px;
}
/* Always show submenu */
.dropdown-menu {
    display: block !important;
    position: static;   /* optional: make them flow like normal list */
    float: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}



/* Halls & Venues Styles */
.halls-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.halls-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.halls-hero-text {
    flex: 1;
}

.halls-hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.halls-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.halls-grid, .rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hall-card, .room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hall-image, .room-image {
    height: 250px;
    overflow: hidden;
}

.hall-image img, .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hall-card:hover .hall-image img, 
.room-card:hover .room-image img {
    transform: scale(1.05);
}

.hall-content, .room-content {
    padding: 25px;
}

.hall-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.hall-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6c757d;
}

.room-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.room-highlights {
    margin: 20px 0;
}

.room-highlights h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.highlights-grid span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.room-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.room-price p {
    font-size: 16px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #c29a5c;
}

.room-actions {
    display: flex;
    gap: 10px;
}

.halls-contact {
    padding: 100px 0;
    background: #f8f9fa;
}


/* Responsive Design */
@media (max-width: 992px) {
    .halls-hero-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .halls-grid, .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
	.slide img {
    width: 400px;
    display: block;
    height: 240px;
    border-radius: 4px;
}
	.gallery-filters {
		display: inline;}
}

/* .slide {
    position: relative;
    overflow: hidden;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
} */

.slide-title {
     margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: black;
    margin-top: -30px;
    /*filter: drop-shadow(4px 4px 5px yellow);*/
    font-weight: 600;
	text-align:center;
}

.slide-description {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}
h3 a {
    color: #000;
    text-decoration: none;
}
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 100%;
    }
	
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .hall-card {
        width: 400px;
    }
}

/* Desktop screens (above 1366px) */
@media (min-width: 1367px) {
    .hall-card {
        width: 450px;
    }
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
  position: relative;
}

.mobile-nav li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
  background: #f9f9f9;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu li {
  border-bottom: 1px solid #eee;
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.submenu-toggle {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  z-index: 10;
}

.mobile-dropdown > a {
  padding-right: 50px !important;
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}
ol, ul {
    padding-left: .5rem!important;
}
.blog-slider .swiper-button-next,
.blog-slider .swiper-button-prev {
    color: #fff;
    background: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.blog-slider .swiper-button-next:after,
.blog-slider .swiper-button-prev:after {
    font-size: 18px; /* adjust arrow size */
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}


/* Full Width Section Styles */
.fullwidth-rooms-section {
    padding: 10px 0;
        background: linear-gradient(135deg, #fef9f3 0%, #e7ccb0 100%);
    position: relative;
    overflow: hidden;
}

.fullwidth-rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.fullwidth-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.fullwidth-section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.fullwidth-section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fullwidth-section-subtitle {
    font-size: 1.3rem;
    color: #bdc3c7;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
}

/* Full Width Carousel Styles */
.fullwidth-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.fullwidth-carousel-wrapper {
    overflow: hidden;
  
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.fullwidth-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 350px !important;
    margin: 0 auto;
    max-width: 1800px;
}

.fullwidth-carousel-slide {
    position: absolute;
    width: 280px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center center;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Slide Positions for 5 Visible Posts */
.slide-far-left {
    transform: translateX(-320px) scale(0.85) rotateY(15deg);
    opacity: 0.6;
    z-index: 2;
}

.slide-left {
    transform: translateX(-160px) scale(0.9) rotateY(8deg);
    opacity: 0.8;
    z-index: 3;
}

.slide-center {
    transform: translateX(0) scale(1) rotateY(0);
    opacity: 1;
    z-index: 5;
}

.slide-right {
    transform: translateX(160px) scale(0.9) rotateY(-8deg);
    opacity: 0.8;
    z-index: 3;
}

.slide-far-right {
    transform: translateX(320px) scale(0.85) rotateY(-15deg);
    opacity: 0.6;
    z-index: 2;
}

.slide-hidden {
    transform: translateX(480px) scale(0.7) rotateY(-25deg);
    opacity: 0.3;
    z-index: 1;
}

/* Enhanced Room Card Styles */
.fullwidth-room-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.slide-center .fullwidth-room-card {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

.fullwidth-room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.fullwidth-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.fullwidth-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fullwidth-room-card:hover .fullwidth-room-overlay {
    opacity: 1;
}

.fullwidth-room-card:hover .fullwidth-room-img {
    transform: scale(1.15);
}

.fullwidth-room-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.fullwidth-room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.fullwidth-room-badge.popular {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.fullwidth-room-badge.luxury {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.fullwidth-room-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fullwidth-room-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fullwidth-room-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.fullwidth-room-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.fullwidth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.fullwidth-feature i {
    color: #3498db;
    width: 16px;
    font-size: 0.8rem;
}

.fullwidth-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fullwidth-room-price {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.fullwidth-price-amount {
    color: #2ecc71;
    font-size: 1.5rem;
    font-weight: 700;
}

.fullwidth-room-rating {
    display: flex;
    gap: 2px;
}

.fullwidth-room-rating i {
    color: #f39c12;
    font-size: 0.8rem;
}

/* Navigation Styles */
.fullwidth-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 0 20px;
}

.fullwidth-nav-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #3498db;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.fullwidth-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.6s ease;
}

.fullwidth-nav-btn:hover::before {
    left: 100%;
}

.fullwidth-nav-btn:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.fullwidth-carousel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 300;
}

.fullwidth-current-slide {
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

.fullwidth-slide-separator {
    color: #7f8c8d;
}

.fullwidth-total-slides {
    color: #bdc3c7;
}

.fullwidth-carousel-controls {
    position: absolute;
    top: 30px;
    right: 30px;
}

.fullwidth-control-btn {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.fullwidth-control-btn:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border-color: #3498db;
}

/* Button Styles */
.fullwidth-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fullwidth-btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.fullwidth-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.fullwidth-btn-secondary {
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
}

.fullwidth-btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.3);
}

.fullwidth-btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #ecf0f1;
    background: transparent;
}

.fullwidth-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-3px);
}

.fullwidth-btn-accent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.fullwidth-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

.fullwidth-rooms-cta {
    text-align: center;
    margin-top: 80px;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .fullwidth-carousel-track {
        max-width: 1400px;
    }
    
    .fullwidth-carousel-slide {
        width: 260px;
    }
    
    .slide-far-left {
        transform: translateX(-280px) scale(0.85);
    }
    
    .slide-left {
        transform: translateX(-140px) scale(0.9);
    }
    
    .slide-right {
        transform: translateX(140px) scale(0.9);
    }
    
    .slide-far-right {
        transform: translateX(280px) scale(0.85);
    }
}

@media (max-width: 1024px) {
    .fullwidth-section-title {
        font-size: 2.8rem;
    }
    
    .fullwidth-carousel-slide {
        width: 350px;
    }
    
    .slide-far-left,
    .slide-far-right {
        display: none;
    }
    
    .slide-left {
        transform: translateX(-120px) scale(0.85);
    }
    
    .slide-right {
        transform: translateX(120px) scale(0.85);
    }
    
    .fullwidth-carousel-track {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .fullwidth-rooms-section {
        padding: 60px 0;
    }
    
    .fullwidth-section-title {
        font-size: 2.2rem;
    }
    
    .fullwidth-section-subtitle {
        font-size: 1.1rem;
    }
    
    .fullwidth-carousel-slide {
        width: 350px;
    }
    
    .slide-left,
    .slide-right {
        transform: scale(0.8);
        opacity: 0.6;
    }
    
    .slide-center {
        transform: scale(1);
    }
    
    .fullwidth-carousel-track {
        height: 450px;
    }
    
    .fullwidth-nav-btn {
        width: 60px;
        height: 60px;
    }
    
    .fullwidth-rooms-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .fullwidth-section-header {
        margin-bottom: 50px;
    }
    
    .fullwidth-section-title {
        font-size: 1.8rem;
    }
    
    .fullwidth-carousel-slide {
        width: 350px;
    }
    
    .fullwidth-carousel-track {
        height: 420px;
    }
    
    .fullwidth-room-image {
        height: 350px;
    }
    
    .fullwidth-room-content {
        padding: 20px;
    }
    
    .fullwidth-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}