:root {
    /*--primary-dark: #101811; */
    --primary-dark:  #F7E4D3 ; /* Very dark green/black */
    /*--secondary-dark: #444D25;*/
    --gold: #cca550;
    --gold-hover: #e8c067;
    --text-light: #e8ede9;
    --text-muted: #a4b3a8;
    --border-color: rgba(204, 165, 80, 0.3);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 400;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

/* Global Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.bg-dark-green {
    /*background-color: var(--primary-dark) !important;*/
    /*background-color: #444D25 !important;*/
    background-color: #F7E4D1 !important;
}

.bg-secondary-green {
    /*background-color: var(--secondary-dark) !important;*/
    background-color: #F7E4D3 !important;
}

.bg-light-beige {
    /*background-color: #eae7e1 !important;*/
    background-color: #F7E4D3 !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-body-dark {
    color: #333333 !important;
}

.section-padding {
    padding: 100px 0;
}

/* Custom Gold Button */
.btn-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    transition: all var(--transition-fast);
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: var(--primary-dark);
}

.btn-gold-solid {
    background-color: var(--gold);
    color: var(--primary-dark);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.btn-gold-solid:hover {
    background-color: var(--gold-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 165, 80, 0.2);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-fast);
    padding: 20px 0;
    background: transparent;
}

.site-header.scrolled {
    /*background: rgba(16, 24, 17, 0.95);*/
    /*background: #444D25;*/
    background:  #F7E4D3;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand img {
    height: 60px;
    transition: height var(--transition-fast);
}

.site-header.scrolled .navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--text-light) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--primary-dark);*/
    /*background-color: #444D25;*/
    background-color: #FDE9D8;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader img {
    width: 150px;
}

/* Footer Styles */
.site-footer {
    /*background-color: var(--secondary-dark);*/
    background-color: #F7E4D3;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 20px;
}

.footer-widget h5 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--gold);
    margin-right: 10px;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Separator Line */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.section-separator::before,
.section-separator::after {
    content: '';
    height: 1px;
    width: 100px;
    background-color: var(--border-color);
    margin: 0 20px;
}

.section-separator i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Home Page specific */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 24, 17, 0.7), var(--primary-dark));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content img {
    max-width: 300px;
    margin-bottom: 30px;
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Feature Icons */
.feature-icon-box {
    text-align: center;
    padding: 30px 15px;
}

.feature-icon-box .icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 2rem;
    transition: all var(--transition-fast);
}

.feature-icon-box:hover .icon {
    /*background-color: var(--gold);*/
    color: var(--primary-dark);
}

.feature-icon-box h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Infusions Cards */
.infusion-card {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    height: 100%;
    transition: all var(--transition-fast);
    border-radius: 8px;
    text-align: center;
}

.infusion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--gold);
}

.infusion-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Pathway Item */
.pathway-item {
    text-align: center;
    margin-bottom: 50px;
}

.pathway-number {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pathway-img-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pathway-img-container img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.5s ease;
}

.pathway-item:hover .pathway-img-container img {
    transform: scale(1.1);
}

.pathway-title {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pathway-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Luxury Accordion */
.accordion-item {
    background-color: transparent;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 8px !important;
}

.accordion-button {
    background-color: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 500;
    padding: 20px 25px;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(204, 165, 80, 0.05);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg) brightness(0.8); /* Attempt to make it goldish */
    transition: transform var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0 25px 25px 85px; /* Offset to align with text, bypassing the number */
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Contact Form Styles */
.form-control, .form-select {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 0;
    padding: 12px 15px;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(204, 165, 80, 0.05);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Form Container */
.contact-form-container {
    background-color: var(--secondary-dark);
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-info-block {
    background-color: transparent;
    padding: 50px;
    height: 100%;
    border-left: 1px solid var(--border-color);
}

@media (max-width: 991px) {
    .contact-info-block {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 40px 20px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
}
