/* Custom styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navbar styles */
.navbar-brand img {
    height: 40px;
}

.nav-link-custom-color {
    color: #9E8A2F !important;
    position: relative;
    text-decoration: none;
    padding-bottom: 5px; 
}

.nav-link-custom-color::after {
    content: '';
    position: absolute;
    bottom: 2px; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: #9E8A2F;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
}

.nav-link-custom-color:hover::after,
.nav-link-custom-color:focus::after,
.nav-link-custom-color.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    background-color: #9E8A2F !important;
}

.dropdown-item-custom-color {
    color: #000 !important;
}

.dropdown-item-custom-color:hover {
    background-color: #8C7B2A !important;
    color: #fff !important;
}

.bg-footer-color {
    background-color: #212121 !important;
}

.btn-custom {
    background-color: #9E8A2F !important;
    color: #000 !important;
    border: none;
    padding: 0.45rem 0.82rem;
    font-weight: bold;
    border-radius: 3px;
}

.btn-custom:hover {
    background-color: #B8A850 !important;
}

/* Header section styles */
.header-banner {
    height: 100vh; 
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

/* Typography for Main Title */
.coordination-title {
    position: relative;
    z-index: 1;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

/* Typography for Description Paragraph */
.header-text {
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Button Styling */
.btn-custom-white {
    position: relative;
    z-index: 1;
    background-color: transparent !important; 
    color: #ccb765 !important; 
    border: 2px solid #ccb765 !important; 
    font-weight: bold !important;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0 !important; 
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom-white:hover {
    background-color: #ccb765 !important; 
    border-color: #ccb765 !important;
    color: #fff !important; 
    text-decoration: none;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .coordination-title {
        font-size: 3rem;
    }
    
    .header-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Intro section styles */
.intro-section h2 {
    font-weight: 700; 
    font-size: 3.5rem; 
    margin-top: -6rem; 
    color: #ccb765;
    text-transform: uppercase;
}

/* Packages section styles */
.packages-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.packages-section .card {
    border: none;
    background-color: transparent;
}

/* UPDATED: Added default font-family */
.packages-section .card-title {
    font-weight: bold;
    color: #ccb765;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* UPDATED: Reduced font size slightly to 1.15rem */
.packages-section .card-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* UPDATED: Changed color to #ccb765 */
.text-custom-color {
    color: #ccb765 !important;
    font-weight: bold !important;
}

/* Book Now Link Styles */
.book-now-link {
    display: inline-flex;
    align-items: center;
    color: #ccb765;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.book-now-link:hover {
    color: #ccb765;
    text-decoration: none; 
    transform: translateY(-5px); 
}

/* Arrow Styling */
.book-now-link i {
    color: inherit; 
    font-size: 1.1rem; 
    font-weight: 900; 
    -webkit-text-stroke: 1px currentColor; 
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.book-now-link:hover i {
    transform: translateX(5px);
}

/* CTA section styles */
.cta-section {
    background-color: #9E8A2F !important;
    color: #000 !important;
}

.btn-cta {
    background-color: #D6BE4D !important;
    color: #000 !important;
    border-color: #D6BE4D !important;
    font-weight: bold !important;
}

.btn-cta:hover {
    background-color: #C2A93A !important;
    border-color: #C2A93A !important;
}

/* Footer styles */
.footer {
    color: #f8f9fa;
    background-color: #212121;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.brand-highlight {
    color: #9E8A2F !important;
}

/* Spacing utilities */
.mb-extra-large {
    margin-bottom: 7rem;
}

.mt-extra-large {
    margin-top: 8rem;
}