html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Georgia", serif;
  background-image: url("../imgs/download.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
}

/* Utility Classes */
.border-gold {
  border: 3px solid #d4af37;
}
.border-line {
  width: 90%;
  height: 2px;
  background-color: #7e6a59;
  margin: 0 auto;
  padding: 0;
}
/* Header Styling */
.header-top {
  padding: 20px 0;
  text-align: center;
}

.site-title {
  font-size: 2.5rem;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
  font-family: "Brush Script MT", cursive;
}

.logo-banner {
  text-align: center;
}

.logo-banner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Address Section */
.address-section {
  border-radius: 4px;
  text-align: center;
  font-style: italic;
  color: #333;
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* Credentials Section */
.credentials-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 4px;
}

.credentials-box {
  flex: 1;
  text-align: center;
}

.credentials-logo {
  width: 140px;
  height: 140px;
  border-radius: 4px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #8b7355;
}

.credentials-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

/* Navigation Bar */
.navbar-custom {
  padding: 0;
  margin-top: 10px;
}

/* Desktop: Always show background */
@media (min-width: 992px) {
  .navbar-custom {
    background-color: #f2e7de;
  }
}

/* Mobile: No background by default, only show on toggler and expanded menu */
@media (max-width: 991px) {
  .navbar-custom {
    background-color: transparent;
  }

  /* Background only on expanded menu */
  .navbar-custom .navbar-collapse.show,
  .navbar-custom .navbar-collapse.collapsing {
    background-color: #f2e7de;
  }
}

/* Hamburger Menu Button */
.navbar-custom .navbar-toggler {
  border: 2px solid #999;
  padding: 8px 12px;
  margin: 10px;
  background-color: #f2e7de;
}

.navbar-custom .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .navbar-nav {
  display: flex;
  width: 100%;
}

.nav-item-wrapper {
  position: relative;
  flex: 1;
  border-right: 1px solid #999;
}

.nav-item-wrapper:last-child {
  border-right: none;
}
.navbar-custom .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.navbar-custom .nav-link {
  color: #333 !important;
  font-weight: 300;
  text-align: center;
  padding: 4px 0 !important;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
}

.navbar-custom .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar-custom .nav-link.active {
  background-color: #d4af37;
  font-weight: 700;
}

/* Remove default dropdown arrow and add custom styling */
.navbar-custom .dropdown-toggle::after {
  display: none;
}

/* Dropdown Icon Styling */
.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Rotate icon when dropdown is shown */
.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

/* Desktop: Hide icon on hover since dropdown appears automatically */
@media (min-width: 992px) {
  .dropdown-icon {
    display: none;
  }
}

/* Mobile: Show icon and make it more prominent */
@media (max-width: 991px) {
  .dropdown-icon {
    font-size: 0.85rem;
    float: right;
    margin-left: auto;
  }
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #d4af37;
  border-top: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
  margin: 0;
}

/* Desktop: Show dropdown on hover */
@media (min-width: 992px) {
  .nav-item-wrapper.dropdown:hover .dropdown-menu-custom {
    display: block;
  }
}

.dropdown-menu-custom .dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu-custom .dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-menu-custom .dropdown-item:hover {
  background-color: #f5e6d3;
  color: #d4af37;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .navbar-custom .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .nav-item-wrapper {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #999;
  }

  .nav-item-wrapper:last-child {
    border-bottom: none;
  }

  .navbar-custom .nav-link {
    padding: 12px 15px !important;
    text-align: left;
    font-size: 1rem;
  }

  .dropdown-menu-custom {
    position: static;
    border: none;
    box-shadow: none;
    background-color: #f9f3ed;
    margin-left: 15px;
  }

  .dropdown-menu-custom .dropdown-item {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .credentials-section {
    flex-direction: column;
  }

  .site-title {
    font-size: 1.8rem;
  }

  .address-section {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .navbar-custom .nav-link {
    font-size: 0.9rem;
    padding: 10px 15px !important;
  }

  .dropdown-menu-custom .dropdown-item {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
}

.award-title {
  font-style: italic;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.award-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  font-family: "Georgia", serif;
}

@media (max-width: 992px) {
  .news-content {
    padding: 40px 30px !important;
    min-height: auto !important;
  }

  .news-title {
    font-size: 2rem;
  }

  .alert-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .news-title {
    font-size: 1.5rem;
  }

  .award-title {
    font-size: 1.5rem;
  }

  .award-text {
    font-size: 0.9rem;
  }

  .border-line {
    width: 100%;
  }
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item .border-gold {
  display: block;
  overflow: hidden;
  height: 250px;
}

.gallery-item .border-gold img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-label {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 991px) {
  .nav-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .nav-label {
    font-size: 0.8rem;
  }
}

.promo-section .row {
  display: flex;
}

.promo-section .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.promo-box {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 400px;
}

.promo-box-light {
  background-color: #f5e6d3;
}

.promo-box-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
}

.promo-box-overlay {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promo-subtitle {
  font-style: italic;
  font-size: 1.3rem;
  color: #b8860b;
  margin-bottom: 20px;
  font-weight: 500;
}

.promo-title {
  font-style: italic;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.promo-price {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  font-style: italic;
}

.price-amount {
  font-size: 2.5rem;
  color: #b8860b;
  font-weight: 700;
}

.original-price {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.promo-note {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin: 0;
}

.promo-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.promo-locations {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.btn-custom {
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-coupon {
  background-color: #d4a574;
  color: #333;
}

.btn-coupon:hover {
  background-color: #b8860b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-contact {
  background-color: #ffb6c1;
  color: #333;
}

.btn-contact:hover {
  background-color: #ff69b4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .promo-box {
    padding: 30px;
    min-height: auto;
  }

  .promo-box-overlay {
    padding: 30px;
  }

  .promo-title {
    font-size: 1.5rem;
  }

  .promo-price {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .promo-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .promo-box {
    padding: 25px;
  }

  .promo-box-overlay {
    padding: 20px;
  }

  .promo-title {
    font-size: 1.3rem;
  }

  .promo-price {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .promo-subtitle {
    font-size: 1rem;
  }

  .btn-custom {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

.video-container {
  border: 2px solid #333;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  display: block;
}

.video-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.video-description strong {
  font-weight: 600;
}

.coming-soon-title {
  font-style: italic;
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  text-align: right;
  font-weight: 400;
}

.coming-soon-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.coming-soon-list li {
  margin-bottom: 12px;
  font-family: "Georgia", serif;
}

.coming-soon-list li strong {
  font-weight: 600;
}

.blogs-item {
  margin-top: 8px;
  margin-bottom: 8px;
}

.sub-list {
  list-style: none;
  padding-left: 30px;
  margin-top: 8px;
  margin-bottom: 0;
}

.sub-list li {
  margin-bottom: 8px;
  color: #333;
}

.sub-list li:before {
  content: "- ";
  margin-right: 8px;
}

@media (max-width: 768px) {
  .video-container {
    height: 300px;
  }

  .coming-soon-title {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 30px;
  }

  .coming-soon-list {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .video-container {
    height: 250px;
  }

  .video-description {
    font-size: 0.9rem;
  }

  .coming-soon-title {
    font-size: 1.5rem;
  }

  .coming-soon-list {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .coming-soon-list li {
    margin-bottom: 10px;
  }

  .sub-list {
    padding-left: 25px;
  }
}

.location-title {
  font-style: italic;
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.location-subtitle {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

.title-divider {
  width: 80%;
  height: 2px;
  background-color: #333;
  margin: 0 auto;
}

.carousel-inner {
  border-radius: 0;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

.carousel-indicators {
  bottom: 15px;
  justify-content: center;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: rgba(255, 255, 255, 1);
  width: 14px;
  height: 14px;
}

.carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.quote-text {
  font-style: italic;
  font-size: 1.3rem;
  color: #333;
  margin-top: 40px;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .location-title {
    font-size: 1.5rem;
  }

  .location-subtitle {
    font-size: 0.9rem;
  }

  .carousel-inner img {
    height: 300px;
  }

  .quote-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .locations-section {
    padding: 50px 0;
  }

  .location-title {
    font-size: 1.3rem;
  }

  .location-subtitle {
    font-size: 0.85rem;
  }

  .carousel-inner img {
    height: 250px;
  }

  .quote-text {
    font-size: 1rem;
  }
}
.footer-section {
  background-color: #e8dfd5;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-column h5 {
  color: #8b7355;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
  color: #9b8b7e;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-column a:hover {
  color: #6b5b4f;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  color: #9b8b7e;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #6b5b4f;
}

.social-links a i {
  font-size: 20px;
  margin-right: 10px;
  width: 25px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #9b8b7e;
}

.social-links a:hover svg {
  fill: #6b5b4f;
}

.footer-bottom {
  border-top: 1px solid #d4c4b4;
  padding-top: 20px;
  margin-top: 30px;
  color: #b5a59b;
  font-size: 13px;
}

.about-logos-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.logo-item {
  display: block;
}

.footer-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bio-nav {
  text-align: right;
  margin-bottom: 30px;
  font-size: 14px;
}

.bio-nav a {
  color: #333;
  text-decoration: underline;
  margin-left: 30px;
  transition: color 0.3s;
}

.bio-nav a:hover {
  color: #8b7355;
}

.bio-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.bio-photo {
  flex: 0 0 200px;
}

.bio-photo img {
  width: 100%;
  max-width: 200px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-credentials {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  line-height: 1.8;
}

.bio-credentials li {
  margin-bottom: 8px;
}

.bio-text {
  flex: 1;
}

.bio-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.bio-text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.bio-text em {
  font-style: italic;
  color: #555;
}

.highlight-name {
  font-weight: bold;
  color: #1a1a1a;
}

.section-title {
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-style: italic;
}

.awards-section {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

.awards-section strong {
  font-weight: 600;
  color: #1a1a1a;
}

.featured-in {
  margin-top: 40px;
  text-align: center;
}

.featured-in h6 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  font-style: italic;
  color: #333;
}

.featured-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.featured-logos img {
  max-height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.featured-logos img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .bio-content {
    flex-direction: column;
    align-items: center;
  }

  .bio-photo {
    flex: 0 0 auto;
  }

  .bio-text p {
    text-align: left;
  }

  .bio-nav {
    text-align: center;
  }

  .bio-nav a {
    margin-left: 15px;
    margin-right: 15px;
  }

  .featured-logos {
    gap: 20px;
  }
}

.subheading {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}
