/* ============================================
   Gilded Horizon Travel & Tours - Theme CSS
   ============================================ */

/* ===== Brand Colors & CSS Custom Properties ===== */
:root {
    --color-deep-blue: #002d75;
    --color-gold: #fad02c;
    --color-gold-hover: #e6bc1f;
    --color-dark-text: #1f2933;
    --color-muted-text: #6b7280;
    --color-light-bg: #f9fafb;
    --color-white: #ffffff;
    --font-heading: 'Prata', serif;
    --font-body: 'Inter', sans-serif;

    /* Bootstrap CSS Variable Overrides */
    --bs-primary: #002d75;
    --bs-primary-rgb: 0, 45, 117;
    --bs-warning: #fad02c;
    --bs-warning-rgb: 250, 208, 44;
    --bs-body-font-family: 'Inter', sans-serif;
}

/* ===== Typography ===== */
body {
    font-family: var(--font-body);
    color: var(--color-dark-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* ===== Section Headings with Gold Divider ===== */
.section-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.section-heading--center {
    text-align: center;
}

.section-heading--center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== Brand Button Styles ===== */
.btn-primary-gold {
    background: var(--color-gold);
    color: var(--color-deep-blue);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-gold:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-deep-blue);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--color-white);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-light-custom:hover {
    background: var(--color-white);
    color: var(--color-deep-blue);
}

/* ===== Navigation Brand Colors ===== */
.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark-text);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-deep-blue);
}

/* ===== Hero Banner ===== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 117, 0.65);
    z-index: 2;
}

.hero-banner__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner__tagline {
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 500;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.2s forwards;
}

.hero-banner__title {
    font-size: 3.75rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.4s forwards;
}

.hero-banner__services {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.6s forwards;
}

.hero-banner__cta {
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.8s forwards;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Our Services Card ===== */
.our-services-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
}

.service-icon {
    font-size: 1.625rem;
    color: var(--color-deep-blue);
}

/* ===== Package Items ===== */
.package-item {
    background: #fafafa;
    padding: 1.75rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #e0e0e0;
    text-align: center;
}

.package-item.highlight {
    border-left-color: var(--color-gold);
    background: #fffef5;
}

.package-meta {
    font-size: 0.875rem;
    color: #777;
}

.package-inclusion {
    font-size: 0.8125rem;
    color: #666;
}

.package-price {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-deep-blue);
}

/* ===== Rates Tables ===== */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.rates-table th {
    background: var(--color-deep-blue);
    color: var(--color-white);
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
}

.rates-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover td {
    background: #f3f4f6;
}

.rates-table .price {
    font-weight: 600;
    color: var(--color-deep-blue);
}

/* ===== Inclusions & Exclusions Lists ===== */
.inclusions-list,
.exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li,
.exclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.inclusions-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.exclusions-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.inclusions-notes {
    background: #fef9c3;
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-gold);
}

/* ===== Tour Cards ===== */
.tour-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tour-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tour-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--color-deep-blue);
}

.tour-card__description {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-muted-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-card__rate {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-gold);
}

.tour-card__rate span {
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--color-muted-text);
}

/* ===== Contact Info Boxes ===== */
.info-box-title {
    color: var(--color-deep-blue);
    font-weight: 600;
}

/* ===== Footer ===== */
.footer-dark {
    background: var(--color-deep-blue);
    color: var(--color-white);
}

.footer-dark a {
    color: var(--color-gold);
    text-decoration: none;
}

.footer-dark a:hover {
    text-decoration: underline;
}

/* ===== Utility Classes ===== */
.bg-light-custom {
    background-color: var(--color-light-bg) !important;
}

.text-deep-blue {
    color: var(--color-deep-blue) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .hero-banner__title {
        font-size: 3.25rem;
    }
}

@media (max-width: 991.98px) {
    .hero-banner__title {
        font-size: 2.5rem;
    }

    .hero-banner__tagline {
        font-size: 0.625rem;
    }

    .hero-banner__services {
        font-size: 0.875rem;
    }

    .navbar-brand img {
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner__title {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .hero-banner__tagline {
        font-size: 0.625rem;
        margin-bottom: 1rem;
    }

    .hero-banner__services {
        font-size: 0.8125rem;
        margin-bottom: 2rem;
    }

    .hero-banner__cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-banner__cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .rates-table th,
    .rates-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }
}
