:root {
    --dark-bg: #040b12; /* dark blue */
    --accent-color: #CC9C20; /* gold */
    --secondary-accent-color: #641616; /* crimson red */
    --gray-color: #999999; /* light grey */
    --secondary-dark-color: #1a1c1d; /* dark grey */
    --font-1: 'Cinzel Decorative', serif;
    --font-2: 'Lora', serif;
    --font-3: 'Cinzel Decorative', serif;
}

body {
    background-color: var(--dark-bg);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 32px; }
h4 { font-size: 26px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

button,
a[type="button"] {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    border: 2px solid var(--secondary-accent-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.5s;
}

a {
    color: var(--accent-color);
	text-decoration: none;
}

a:hover {
    color: #641616;
}

.form input, .form textarea {
    background-color: #2f2f2f;
    color: white;
    border: none;
}

.form input:focus, .form textarea:focus {
    background-color: #2f2f2f;
    color: white;
    box-shadow: none;
}

.nav-link:focus {
    color: var(--gray-color) !important;
}

.blog_section {
    padding: 3em 1em;
    background-size: cover;
    background-position: center;
}

.section {
    padding: 3em 1em;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.bg-accent-color { background-color: var(--accent-color); }
.accent-color { color: var(--accent-color); }
.border-accent-color { border-color: var(--accent-color); }
.bg-dark-color { background-color: var(--dark-bg); }
.bg-secondary-dark { background-color: var(--secondary-dark-color); }
.bg-secondary-gray { background-color: #2f2f2f; }

.text-gray { color: var(--gray-color); }
.text-dark-color { color: var(--secondary-dark-color); }
.text-gold { color: var(--accent-color); }


/* ======================================================
  Navbar Styles 
======================================================
*/
.nav-link { 
  color: var(--gray-color); 
}

.navbar .nav-link:hover {
  color: var(--accent-color);
}

.nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar .dropdown-item {
  color: var(--gray-color);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  color: var(--accent-color);
  background-color: var(--dark-bg);
}

.navbar-nav .nav-item {
  margin: 0;
  padding: 5px 0;
}

.navbar-nav .nav-item:last-child {
  margin-left: 5px;
}

.navbar-nav {
  display: flex;
  gap: 5px;
}

/* Dropdown Hover Effect (for desktops) */
@media (min-width: 768px) {
    /* Base styles for the dropdown menu when it's hidden */
    .navbar .dropdown .dropdown-menu {
        transition: opacity 0.5s ease, transform 0.5s ease;
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden; /* Ensures it's not clickable when hidden */
        display: block; /* Required for the transition to work with Bootstrap */
    }
    
    /* Styles for the dropdown menu on hover */
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}




.logo-container {
    max-width: 150px;
}

.social-icon {
    font-size: 20px;
    color: var(--accent-color);
    transition: 0.3s;
}

.social-icon:hover {
    color: white;
}

.white-text-hover:hover {
    color: white;
}

.font-1 { font-family: var(--font-1); }
.font-2 { font-family: var(--font-2); }
.font-3 { font-family: var(--font-3); }

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: var(--dark-bg);
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.divider {
    display: flex;
    width: 12%;
    align-items: center;
    font-size: 20px;
}

.divider::before,
.divider::after {
    content: "";
    display: block;
    flex-grow: 1;
    border-top: 1px dashed var(--accent-color);
    margin-inline: 0.5rem;
}

.secondary-color-hover:hover {
    background-color: var(--secondary-dark-color);
    color: white;
}

.accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}
/*
.icon-box {
    border-radius: 50%;
    font-size: 32px;
    width: 5rem;
    height: 5rem;
}
*/
.bg-overlay {
    background-color: var(--dark-bg);
}

.shadow {
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.5) !important;
}

.border-bottom {
    border-bottom: solid 1px #505050 !important;
}

.border-left {
    border-left: solid 1px #373737;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-btn {
    aspect-ratio: 1/1;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn-larger {
    width: 4rem;
    font-size: 36px;
}

.video-btn-small {
    width: 2.5rem;
    font-size: 24px;
}


.video-iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/* Button Styling */
.btn-accent {
    background-color: #8b0000;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-accent:hover {
    background-color: #a00000;
}

/* Google Maps */
.maps {
    width: 100%;
    height: 400px;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

/* Font Weights */
.cinzel-decorative-regular { font-weight: 400; }
.cinzel-decorative-bold { font-weight: 700; }
.cinzel-decorative-black { font-weight: 900; }
.lora-regular { font-weight: 400; }
.lora-bold { font-weight: 700; }

/* Responsive Styles */
@media only screen and (max-width:768px) {
    h1 { font-size: 10vw; 
         max-width: 100%;  
}
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    h6 { font-size: 14px; }

    .divider { width: 30%; }
    .border-left { border-left: none; }
}

/* Carousel Adjustments */
#testimonialCarousel {
    max-width: 500px;
    margin: auto;
}

.carousel-item p {
    font-size: 1.2rem;
    text-align: left;
    font-style: italic;
    font-weight: bold;
}

.carousel-control-prev, 
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev { left: -40px; }
.carousel-control-next { right: -40px; }

.testimonial-text {
    text-align: left;
    margin-top: 5px;
	font-weight: bold;
	font-family: var(--font-2);
}

.testimonial-name {
    text-align: right !important;
    margin-top: 5px;
	font-weight: normal !important;
	font-family: var(--font-3);
}

.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
}
.checklist li span {
    color: white; /* A mystical copper-gold accent */
    font-weight: bold;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .w-75 {
        width: 100% !important;
    }
}
section {
    margin-bottom: 0;
    padding-bottom: 0;
}
.text-white ul li {
    color: white !important;
}
a.bg-accent-color {
    padding: 0.75em 1.5em; /* Adjust padding for a normal size */
    font-size: 1rem; /* Adjust text size */
    border-radius: 5px; /* Adds slight rounding for a polished look */
    max-width: 250px; /* Optional: Prevents it from getting too large */
    text-align: center; /* Ensures text stays centered */
}
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
/*
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* Adjust the font size for smaller screens */
        padding: 0 10px; /* Add some padding to prevent text from overflowing */
    }
}
*/

/* Show dropdown on hover for desktops (screens wider than 768px) */
@media (min-width: 768px) { 
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Wrapper around the <picture> element */
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
  object-fit: cover;
}

/* Make sure the actual image fills and covers */
.hero-section picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* behaves like background-size: cover */
  object-position: center; /* behaves like background-position: center */
  z-index: 0;
}

/* Ensure content in hero section is above background and fog */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== MOBILE OVERRIDE ===== */
@media (max-width: 767px) {
  .hero-section .hero-bg {
    position: absolute; /* disables parallax */
  }
  
  .hero-section picture img {
    position: relative;  /* keeps image filling container */
    height: 100vh;       /* full viewport height */
  }
}

#testimonialCarouselMobile {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

#testimonialCarouselMobile .carousel-control-prev,
#testimonialCarouselMobile .carousel-control-next {
    width: 10%; /* Adjust as needed */
    max-width: 50px; /* Prevents excessive width */
    opacity: 0.7;
}

#testimonialCarouselMobile .carousel-control-prev {
    left: -10px; /* Slightly pull it inward */
}

#testimonialCarouselMobile .carousel-control-next {
    right: -10px; /* Slightly pull it inward */
}

/* Ensures the arrows do not overflow on small screens */
@media (max-width: 768px) {
    #testimonialCarouselMobile .carousel-control-prev {
        left: 5px; /* Keep within safe bounds */
    }
    
    #testimonialCarouselMobile .carousel-control-next {
        right: 5px; /* Keep within safe bounds */
    }
}

@media (max-width: 768px) {
    #testimonialCarouselMobile .testimonial-text {
        font-size: 1rem; /* Adjust as needed */
        padding: 0 2rem; /* Adds space on the sides */
    }

    #testimonialCarouselMobile .testimonial-name {
        font-size: 0.9rem; /* Slightly smaller name text */
    }
}

.custom-bird {
  height: 1.5em;        /* scale with text size */
  width: auto;        /* keep aspect ratio */
  vertical-align: -0.125em; /* align with text baseline (like FA) */
  color: accent-color;     /* or use accent-color class */
}

.custom-bird path {
  fill: var(--accent-color);
}

.bird-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bird-divider::before,
.bird-divider::after {
  content: "";
  flex-grow: 0.15;
  border-top: 1px dashed var(--accent-color);
  margin-inline: 0.5rem;
}

/* style.css */
.spotlight-card {
  position: relative;
  border-radius: 1rem;
  background-color: #111;
  color: white;
  padding: 2rem;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(204, 156, 32, 0.25), transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotlight-card:hover::before {
  opacity: 0.6;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.highlight-card {
  background-color: #111;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(204,156,32,0.3); /* subtle gold glow */
}

.highlight-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #CC9C20; /* gold accent */
}

.highlight-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ccc;
}

footer {
  position: relative;  /* ensures z-index applies */
  z-index: 1;          /* higher than hero-bg's z-index:0 */
}

body, html {
    margin: 0;
    padding: 0;
}
/* Target only the icon boxes in your mysticism section */
.section .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section .icon-box i {
  font-size: 2.5rem;
  color: white;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Hover effect */
.section .icon-box:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 20px var(--accent-color);
}

.section .icon-box:hover i {
  text-shadow: 0 0 12px var(--accent-color);
  transform: scale(1.15);
}

/* Subtle breathing glow animation */
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 0 var(--accent-color); }
  50% { text-shadow: 0 0 10px var(--accent-color); }
}
