:root {
    --primary-color: #1a1a1a;
    --secondary-color: #349800; /* Updated from gold to green */
    --accent-color: #8e44ad;
    --bg-light: #fdfdfd;
    --text-dark: #1a1a1a;
    --text-light: #fff;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
    transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container-fluid { width: 100%; max-width: 100%; padding: 0; }
.section-padding { padding: 40px 0; }
.text-center { text-align: center; }
.bg-light { background: #f9f9f9; }

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

header.scrolled {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-link img {
    height: 90px;
    transition: var(--transition);
}

header.scrolled .logo-link img {
    height: 70px;
}

.site-title-nav {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: var(--transition);
}

header.scrolled .site-title-nav {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 30px; }
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
}

header.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--secondary-color); }

/* Hero Resort Style */
.hero-resort {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Offset for fixed header */
}

.small-hero { height: 50vh !important; min-height: 400px; }

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShowFade 20s linear infinite;
}

.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 5s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 10s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideShowFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 0; }
.hero-content-resort { z-index: 1; }
.hero-subtitle { text-transform: uppercase; letter-spacing: 8px; font-size: 0.9rem; display: block; margin-bottom: 20px; }
.hero-content-resort h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content-resort h1 .thin { font-weight: 200; font-family: var(--font-main); text-transform: none; }

.scroll-down {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Magazine Grid */
.magazine-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 60vh; }
.magazine-text { display: flex; padding: 0 5%; }
.magazine-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; text-transform: none; }
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 15px;
}
.lead { font-size: 1.1rem; font-family: var(--font-heading); color: var(--secondary-color); margin-bottom: 15px; }

.image-wrapper { position: relative; padding: 20px; }
.image-wrapper img { width: 100%; height: 50vh; object-fit: contain; box-shadow: 0 30px 60px rgba(0,0,0,0.1); background: #f9f9f9; }
.image-accent { position: absolute; top: 10px; right: 10px; width: 100%; height: 100%; border: 2px solid var(--secondary-color); z-index: -1; }

/* Overlap Grid */
.overlap-grid { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; padding: 0 5%; }
.overlap-image img { width: 100%; height: 50vh; object-fit: contain; background: #f9f9f9; }
.overlap-card { background: #fff; padding: 40px; margin-left: -100px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); z-index: 2; }
.overlap-card h3 { font-size: 2rem; margin-bottom: 15px; text-transform: none; }

/* Luxury Folder Mosaic */
.folder-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
    grid-auto-flow: dense;
}

.mosaic-item { position: relative; overflow: hidden; border-radius: 4px; }
.mosaic-item img { width: 100%; height: auto; object-fit: contain; transition: var(--transition); display: block; }
.mosaic-item:hover img { transform: scale(1.05); }

.mosaic-item.large { grid-column: span 2; grid-row: span 2; }
.mosaic-item.tall { grid-row: span 2; }

.mosaic-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: var(--transition); color: #fff; font-size: 1.5rem;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }

.mt-80 { margin-top: 40px; }

/* Visual Break */
.visual-break {
    height: 35vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fixed is often problematic */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    min-height: 250px;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.visual-content h2 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Contact Page Specifics */
.contact-magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-resort {
    display: flex;
    gap: 30px;
}

.info-content-resort h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: none;
}

.resort-contact-item {
    margin-top: 40px;
    position: relative;
    padding-left: 60px;
}

.resort-contact-item .resort-number {
    left: 0;
    top: 0;
}

.resort-contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.resort-contact-item p {
    margin-bottom: 5px;
    color: #555;
}

.resort-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.resort-contact-item a:hover {
    color: var(--secondary-color);
}

.contact-form-resort {
    background: #fff;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.contact-form-resort h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: none;
}

/* Inquiry Section */
.inquire-section { 
    background-image: url('../images/afh6.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 0;
}

.inquire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.92); /* Subtle light overlay to keep form readable */
    z-index: 1;
}

.inquiry-box-resort {
    background: #fff;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.contact-grid-resort {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-box-resort {
    height: 100%;
    min-height: 450px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.map-box-resort iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.inquiry-header { margin-bottom: 30px; text-align: center; }
.inquiry-header h3 { font-size: 2.5rem; margin-bottom: 10px; text-transform: none; }
.inquiry-header p { color: #666; font-size: 1.1rem; }

.resort-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.resort-form input, .resort-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.resort-form input:focus, .resort-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.resort-form textarea { margin-bottom: 30px; resize: none; }
.resort-form .btn { width: 100%; }

@media (max-width: 768px) {
    .inquiry-box-resort { padding: 30px; }
    .resort-form .form-row { grid-template-columns: 1fr; }
    .visual-content h2 { font-size: 2rem; }
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover { color: var(--secondary-color); }

@media only screen and (max-width: 700px){
  .modal-content { width: 100%; }
}

/* Accommodations Gallery */
.section-header { margin-bottom: 40px; }
.section-lead { max-width: 800px; margin: 15px auto 0; font-size: 1.1rem; color: #666; }

.acc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acc-item { height: 250px; overflow: hidden; border-radius: 4px; background: #f9f9f9; }
.acc-item img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); }
.acc-item:hover img { transform: scale(1.05); }

.mt-50 { margin-top: 30px; }

/* Resort Grid Items */
.resort-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.resort-item { padding: 0; border: 1px solid #eee; position: relative; transition: var(--transition); background: #fff; }
.resort-link, .principle-content { display: block; padding: 60px 40px; color: inherit; text-decoration: none; height: 100%; transition: var(--transition); }
.resort-link:hover, .resort-item:hover .principle-content { background: var(--primary-color); color: #fff; transform: translateY(-10px); }
.resort-link:hover .resort-icon i, .resort-item:hover .principle-icon-box i { color: var(--secondary-color); }
.resort-number { position: absolute; top: 15px; right: 15px; font-size: 2.5rem; opacity: 0.1; font-family: var(--font-heading); pointer-events: none; transition: var(--transition); }
.resort-item:hover .resort-number { opacity: 0.2; transform: scale(1.2); }
.resort-icon i, .principle-icon-box i { font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 20px; transition: var(--transition); display: inline-block; }
.principle-icon-box { margin-bottom: 25px; }
.principle-content h3 { font-size: 1.8rem; margin-bottom: 15px; text-transform: none; }
.principle-content p { font-size: 1rem; color: #666; transition: var(--transition); }
.resort-item:hover .principle-content p { color: #ccc; }

/* Swiper Adjustments */
.experience-swiper {
    padding: 20px 0 60px !important;
}

.experience-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.experience-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.experience-swiper .swiper-button-next,
.experience-swiper .swiper-button-prev {
    color: var(--secondary-color);
    top: 50%;
    transform: translateY(-50%);
}

.experience-swiper .swiper-button-next::after,
.experience-swiper .swiper-button-prev::after {
    font-size: 1.5rem;
}

/* Bunker Style */
.bunker-grid { display: flex; flex-direction: column; gap: 100px; padding: 0 5%; }
.bunker-item .bunker-inner { display: grid; grid-template-columns: 1.2fr 0.2fr 1fr; align-items: center; gap: 40px; }
.bunker-item.reverse .bunker-inner { grid-template-columns: 1fr 0.2fr 1.2fr; }

.bunker-item.reverse .bunker-image { order: 3; }
.bunker-item.reverse .bunker-content { order: 1; text-align: right; }
.bunker-item.reverse .bunker-label { order: 2; }

.bunker-image { 
    width: 100%; 
    height: 550px; 
    overflow: hidden; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
}

.bunker-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    display: block;
    background: #f9f9f9;
}

.bunker-content h3 { font-size: 2.8rem; margin-bottom: 20px; text-transform: none; color: var(--primary-color); }
.bunker-content p { font-size: 1.1rem; line-height: 1.8; color: #555; }

@media (max-width: 992px) {
    .bunker-grid { gap: 60px; }
    .bunker-item .bunker-inner, .bunker-item.reverse .bunker-inner { 
        grid-template-columns: 1fr; 
        text-align: center !important;
    }
    .bunker-image { height: 400px; }
    .bunker-label { 
        display: block; 
        text-align: center; 
        margin: 20px 0;
    }
    .bunker-label .vertical-text {
        writing-mode: horizontal-tb;
        margin: 0;
        letter-spacing: 5px;
        font-size: 1.2rem;
    }
    .bunker-item.reverse .bunker-image { order: 1; }
    .bunker-item.reverse .bunker-content { order: 2; }
}

/* Gallery Resort */
.resort-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item-resort { position: relative; overflow: hidden; height: auto; }
.gallery-item-resort.large { grid-column: span 2; }
.gallery-item-resort img { width: 100%; height: auto; object-fit: contain; transition: var(--transition); display: block; }
.gallery-item-resort:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: var(--transition); color: #fff;
}
.gallery-item-resort:hover .gallery-overlay { opacity: 1; }

/* Buttons & Alerts */
.btn { padding: 18px 45px; text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 700; transition: var(--transition); display: inline-block; cursor: pointer; border: 1px solid transparent; text-decoration: none; }
.btn-primary { background: var(--secondary-color); color: #fff; }
.btn-primary:hover { background: #000; color: #fff; }
.btn-outline-dark { border: 1px solid #000; color: #000; }
.btn-outline-light { border: 1px solid #fff; color: #fff; }
.btn-outline-light:hover { background: #fff; color: #000; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; margin-bottom: 30px; }
.hero-actions .btn { min-width: 200px; }

@media (max-width: 576px) {
    .hero-actions .btn { min-width: 100%; }
}
.btn-text { text-decoration: none; color: inherit; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; border-bottom: 2px solid var(--secondary-color); padding-bottom: 5px; transition: var(--transition); }
.btn-text:hover { color: var(--secondary-color); padding-right: 10px; }

/* Accessibility & Floating */
.accessibility-widget, .floating-contact { position: fixed; bottom: 30px; z-index: 1001; }
.accessibility-widget { left: 30px; }
.floating-contact { right: 30px; display: flex; flex-direction: column; gap: 15px; }

.access-btn, .float-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #eee; font-size: 1.3rem; transition: var(--transition);
}
.access-btn { background: #fff; color: #000; }
.float-btn { color: #fff; text-decoration: none; }
.float-btn.call { background: #1a1a1a; }
.float-btn.mail { background: var(--secondary-color); }

.access-menu {
    display: none; position: absolute; bottom: 75px; left: 0; background: #fff; width: 250px;
    padding: 20px; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid #eee;
}
.access-menu button {
    display: block; width: 100%; padding: 12px; margin-bottom: 8px; border: 1px solid #eee;
    background: #fafafa; cursor: pointer; text-align: left; border-radius: 8px; font-family: inherit; font-size: 0.85rem; transition: 0.3s;
}
.access-menu button:hover { background: var(--secondary-color); color: #fff; }

.gallery-bunker-grid { display: flex; flex-direction: column; gap: 80px; }
.gallery-bunker-grid .bunker-inner { display: grid; grid-template-columns: 1.5fr 0.2fr 1fr; align-items: center; gap: 40px; }
.gallery-bunker-grid .bunker-item.reverse .bunker-inner { grid-template-columns: 1fr 0.2fr 1.5fr; }

.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: var(--transition); color: #fff; font-size: 2rem;
}
.bunker-image:hover .gallery-overlay { opacity: 1; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content-resort h1 { font-size: 3rem; }
    .acc-grid, .folder-mosaic { grid-template-columns: 1fr 1fr; }
    .mosaic-item.large { grid-column: span 1; grid-row: span 1; }
    .mosaic-item.tall { grid-row: span 1; }
    .magazine-grid, .overlap-grid, .bunker-item .bunker-inner, .contact-magazine-grid { grid-template-columns: 1fr; }
    .contact-info-resort { flex-direction: row; align-items: flex-start; gap: 15px; }
    .overlap-card { margin-left: 0; margin-top: -50px; padding: 40px; }
    .resort-gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid-resort { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: #fff;
        flex-direction: column; justify-content: center; align-items: center; transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1002;
        visibility: hidden;
    }
    .nav-links.active { right: 0; visibility: visible; }
    .nav-links li { margin: 20px 0; margin-left: 0; }
    .nav-links a { color: #000 !important; font-size: 1.2rem; }
    .mobile-toggle { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1003; position: relative; }
    .mobile-toggle span { width: 30px; height: 2px; background: #fff; transition: 0.3s; }
    header.scrolled .mobile-toggle span { background: #000; }
    
    .mobile-toggle.active span { background: #000 !important; }
    .mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .hero-content-resort h1 { font-size: 2.5rem; }
    .info-content-resort h2 { font-size: 2.2rem; }
    .contact-form-resort { padding: 30px 20px; }
    .resort-contact-item { padding-left: 60px; }
    .visual-content h2 { font-size: 2.5rem !important; }
}

@media (max-width: 576px) {
    .acc-grid { grid-template-columns: 1fr; }
    .folder-mosaic { grid-template-columns: 1fr 1fr; gap: 10px; }
    .folder-mosaic { grid-auto-rows: auto; }
    .mosaic-item { height: auto; background: transparent; }
    .resort-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-item-resort { height: auto; background: transparent; }
    .accommodations-luxury.section-padding { padding-bottom: 20px; }
    .accommodations-luxury .mt-80 { margin-top: 20px; }
}

/* Accessibility Classes */
body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .bg-light, 
body.dark-mode section:not(.hero-resort):not(.visual-break):not(.inquire-section) {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #fff !important;
}

body.dark-mode .magazine-card, body.dark-mode .resort-item, body.dark-mode .inquiry-box-resort, body.dark-mode .contact-form-resort {
    background-color: #2c2c2c !important;
    border-color: #444 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .resort-link:hover, body.dark-mode .resort-item:hover .principle-content {
    background-color: #3d3d3d !important;
}

body.dark-mode p, body.dark-mode span:not(.vertical-text):not(.hero-subtitle) {
    color: #bbb !important;
}

body.dark-mode .footer-section {
    background-color: #000 !important;
}

/* High Contrast Mode */
body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}

body.high-contrast a {
    text-decoration: underline !important;
    color: #ffff00 !important; /* Yellow links for contrast */
}

body.high-contrast .btn-primary {
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

/* Dyslexic Font */
body.dyslexic-font, body.dyslexic-font * {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url('https://cdn.jsdelivr.net/npm/opendyslexic@1.0.3/OpenDyslexic-Regular.otf');
}

@media (max-width: 768px) {
    .accessibility-widget, .floating-contact { bottom: 20px; }
    .accessibility-widget { left: 15px; }
    .floating-contact { right: 15px; gap: 10px; }
    .access-btn, .float-btn { width: 50px; height: 50px; font-size: 1.1rem; }
    .access-menu { bottom: 65px; left: 0; width: 220px; }
}
