:root {
  --bs-primary: #c89f2f; /* e.g. a golden color */
  --bs-secondary: #f6e9c4;
  --bs-body-bg: #faf7f2;
}

/* Modern Navbar Styles */
.modern-navbar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modern-navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.brand-wrapper {
  transition: transform 0.3s ease;
}

.brand-wrapper:hover {
  transform: translateY(-2px);
}

.logo-img {
  transition: transform 0.3s ease;
}

.brand-wrapper:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.brand-name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.brand-tagline {
  color: var(--bs-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link-modern {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-modern i {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link-modern:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link-modern:hover i {
  opacity: 1;
  color: var(--bs-primary);
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 2px;
  background: var(--bs-primary);
  transition: transform 0.3s ease;
}

.nav-link-modern:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-cta {
  margin-left: 1rem;
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-width: 2px;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.btn-nav i {
  font-size: 1rem;
}

.navbar-toggler {
  padding: 0.5rem;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(200, 159, 47, 0.25);
}

/* Navbar responsive adjustments */
@media (max-width: 1400px) {
  .btn-nav {
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
  }
  
  .navbar-cta {
    margin-left: 0.5rem;
  }
  
  .nav-link-modern {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
  }
}

@media (max-width: 1280px) {
  .btn-nav {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .btn-nav i {
    display: none;
  }
  
  .navbar-cta {
    margin-left: 0.25rem;
  }
  
  .nav-link-modern {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 1199px) {
  .nav-link-modern {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.85rem;
  }
  
  .btn-nav {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1199px) {
  /* Hamburger menu styles when collapsed */
  .navbar-cta {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn-nav i {
    display: inline-block;
  }
  
  .btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .brand-tagline {
    font-size: 0.75rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .nav-link-modern {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.1rem;
  }
  
  .btn-nav {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Modern Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0;
}

.hero-text-box {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta-group {
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-cta-group .btn {
  transition: all 0.3s ease;
  border-width: 2px;
}

.hero-cta-group .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.scroll-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-cta-group .btn-lg {
    padding: 0.65rem 1.75rem !important;
    font-size: 0.95rem;
  }
  
  .hero-cta-group .btn i {
    font-size: 0.95rem;
    margin-right: 0.35rem !important;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-cta-group .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .hero-cta-group .btn i {
    font-size: 1rem;
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group .btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem !important;
  }
  
  .hero-section {
    height: auto;
    min-height: 600px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-group .btn-lg {
    padding: 0.7rem 1.25rem !important;
    font-size: 0.9rem;
  }
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background-color: #947213;
  border-color: #947213;
}

.card {
  background-color: #ffffff;
  border: 1px solid #d1a103;
  color: #2a2925;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  height: 100%;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1.02);
  will-change: transform, box-shadow;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  min-height: 90px;
}
#carousel-1 {
  height: 600px;
}

.navbar-brand span {
  display: inline-block;
  min-height: 22px; /* Adjust based on font size */
}

.card-body {
  min-height: 200px; /* Adjust based on content */
}

.photo-gallery .item {
  overflow: hidden;
}

.photo-gallery .item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}