/* ========================================
   EXCURSIONS PAGE STYLES
   GVA TO ALPS - Premium Day Trips
======================================== */

/* Hero Section */
.excursion-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.excursion-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.excursion-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.excursion-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
}

.excursion-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.excursion-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1.1rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gold, #c9a962);
    color: #000;
    border: 2px solid var(--gold, #c9a962);
}

.btn-primary:hover {
    background: var(--gold-dark, #a88b4a);
    border-color: var(--gold-dark, #a88b4a);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* Why Book Section */
.why-book-section {
    padding: 6rem 0;
    background: var(--cream, #f8f6f3);
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.why-book-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.why-book-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.why-book-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 2rem;
}

.why-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.why-book-list li:last-child {
    border-bottom: none;
}

.why-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold, #c9a962);
    border-radius: 50%;
    margin-top: 2px;
}

.why-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Fleet Section */
.fleet-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.fleet-section .fleet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fleet-section .fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

.fleet-section .container {
    position: relative;
    z-index: 2;
}

.fleet-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.fleet-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.fleet-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fleet-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fleet-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.fleet-card-image {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
}

.fleet-card-image img {
    width: 100%;
    height: auto;
}

.fleet-card-content {
    padding: 1.5rem;
    text-align: center;
}

.fleet-card-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.fleet-capacity {
    color: var(--gold, #c9a962);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fleet-features {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Excursions Section */
.excursions-section {
    padding: 6rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted, #7a7a7a);
    font-size: 1.1rem;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.excursion-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.excursion-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.excursion-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.excursion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.excursion-card:hover .excursion-card-image img {
    transform: scale(1.05);
}

.excursion-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.excursion-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.excursion-duration svg {
    width: 16px;
    height: 16px;
}

.excursion-card-content {
    padding: 1.5rem;
}

.excursion-location {
    display: inline-block;
    color: var(--gold, #c9a962);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.excursion-card-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.excursion-intro {
    color: var(--text-muted, #7a7a7a);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.excursion-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.excursion-highlights li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-body, #4a4a4a);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.excursion-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold, #c9a962);
    font-weight: 600;
}

.excursion-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.excursion-price .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted, #7a7a7a);
}

.excursion-price .price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
}

.btn-details {
    background: var(--gold, #c9a962);
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--gold-dark, #a88b4a);
}

.exc-full-page-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold, #c9a962);
    text-decoration: none;
    transition: color 0.2s;
}
.exc-full-page-link:hover {
    color: #fff;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background: var(--dark, #111);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.booking-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold, #c9a962);
}

.contact-item a {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold, #c9a962);
}

.booking-form-container {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
}

.excursion-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.excursion-booking-form .form-group {
    margin-bottom: 1.25rem;
}

.excursion-booking-form label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.excursion-booking-form .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.excursion-booking-form .form-input:focus {
    outline: none;
    border-color: var(--gold, #c9a962);
    background: rgba(255,255,255,0.12);
}

.excursion-booking-form .form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.excursion-booking-form select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.excursion-booking-form select.form-input option {
    background: #1a1a1a;
    color: #fff;
}

.excursion-booking-form textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold, #c9a962);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light, #dcc282);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-address {
    margin-top: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold, #c9a962);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--gold, #c9a962);
}

/* Excursion Modal */
.excursion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.excursion-modal.active {
    opacity: 1;
    visibility: visible;
}

.excursion-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.excursion-modal .modal-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.excursion-modal.active .modal-content {
    transform: translateX(0);
}

.excursion-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.excursion-modal .modal-close svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.excursion-modal .modal-close:hover {
    background: rgba(0,0,0,0.8);
}

.modal-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.modal-hero-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
}

.modal-location {
    display: inline-block;
    background: var(--gold, #c9a962);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.modal-hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.modal-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.modal-duration,
.modal-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.modal-duration svg {
    width: 18px;
    height: 18px;
}

.modal-price {
    font-weight: 600;
    color: var(--gold, #c9a962);
}

.modal-body {
    padding: 2rem;
    background: #fff;
    color: var(--text-dark, #1a1a1a);
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold, #c9a962);
}

.modal-intro {
    font-size: 1.1rem;
    color: var(--text-body, #4a4a4a);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(201, 169, 98, 0.1);
    border-left: 3px solid var(--gold, #c9a962);
    border-radius: 0 4px 4px 0;
    color: var(--text-body, #4a4a4a);
}

.modal-note svg {
    width: 20px;
    height: 20px;
    color: var(--gold, #c9a962);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Timetable Grid */
.timetable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.timetable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream, #f8f6f3);
    border-radius: 8px;
    color: var(--text-body, #4a4a4a);
}

.timetable-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold, #c9a962);
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    gap: 1.5rem;
}

.attraction-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: var(--cream, #f8f6f3);
    border-radius: 8px;
    overflow: hidden;
}

.attraction-image {
    height: 150px;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-content {
    padding: 1rem 1rem 1rem 0;
}

.attraction-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.5rem;
}

.attraction-content p {
    font-size: 0.9rem;
    color: var(--text-muted, #7a7a7a);
    line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold, #c9a962);
}

.itinerary-step {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
}

.itinerary-step .step-number {
    position: absolute;
    left: -2rem;
    top: 0.75rem;
    width: 32px;
    height: 32px;
    background: var(--gold, #c9a962);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.itinerary-step p {
    color: var(--text-body, #4a4a4a);
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    gap: 1rem;
}

.pricing-card {
    padding: 1.5rem;
    background: var(--cream, #f8f6f3);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
}

.pricing-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.5rem;
}

.pricing-details {
    color: var(--text-muted, #7a7a7a);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-weight: 700;
    color: var(--gold-dark, #a88b4a);
    font-size: 1rem;
}

/* Modal CTA */
.modal-cta {
    text-align: center;
    padding: 2rem 0;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: translateY(120%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.toast.active {
    transform: translateY(0);
}

.toast.success {
    background: #22c55e;
}

.toast.error {
    background: #ef4444;
}

.toast-icon {
    width: 24px;
    height: 24px;
}

.toast-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .excursion-hero h1 {
        font-size: 2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .excursions-grid {
        grid-template-columns: 1fr;
    }
    
    .excursion-booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .excursion-modal .modal-content {
        max-width: 100%;
    }
    
    .modal-hero {
        height: 250px;
    }
    
    .modal-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .timetable-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-card {
        grid-template-columns: 1fr;
    }
    
    .attraction-image {
        height: 180px;
    }
    
    .attraction-content {
        padding: 1rem;
    }
}

/* Header dark mode for excursions page */
.excursions-page .header {
    background: transparent;
    transition: background 0.3s ease;
}

.excursions-page .header.scrolled {
    background: rgba(0,0,0,0.95);
}

.excursions-page .header-dark .nav-link {
    color: #fff;
}

.excursions-page .header-dark .nav-link:hover {
    color: var(--gold, #c9a962);
}
