/* primary colors */
/* #0080a0 Bleu cyan */
/* #04316f Bleu foncé */

.text-blue-fonce {
    color: #04316f;
}

.bg-blue-fonce {
    background-color: #04316f;
}

.bg-cream {
    background-color: #68696c3b;
}

.bg-dark {
    background-color: #393a3c;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.bg-cyan {
    background-color: #0080a0;
}

.text-cyan {
    color: #0080a0;
}

.border-cyan {
    border-color: #0080a0;
}

.ring-cyan {
    --tw-ring-color: #0080a0;
}

.hover\:bg-cyan:hover {
    background-color: #0080a0;
}

.hover\:bg-cyan-dark:hover {
    background-color: #006080;
}

.hover\:text-cyan:hover {
    color: #0080a0;
}

.focus\:ring-cyan:focus {
    --tw-ring-color: #0080a0;
}

.bg-cyan-light {
    background-color: #e0f4f8;
    color: #04316f;
}

.text-darken {
    color: #363739;
}

.max-w-header {
    max-width: 1300px;
}

.max-w-content {
    max-width: 1200px;
}

/* animations */
.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0%   { transform: translate(0, 0px); }
    50%  { transform: translate(0, 8px); }
    100% { transform: translate(0, 0px); }
}

.floating-4 {
    animation-name: floating-4;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-4 {
    0%   { transform: translate(0, 0px); }
    50%  { transform: translate(0, 8px); }
    100% { transform: translate(0, 0px); }
}

/* navbar */
.fixed {
    transition: background-color 0.3s ease;
}

.fixed img {
    transition: filter 0.3s ease;
}

.fixed.scrolled img {
    filter: brightness(0) invert(1);
}

.nav-active {
    color: #04316f;
    font-weight: 600;
}

/* AOS stacking fix */
[data-aos] {
    transform-style: flat;
}

/* === Utility classes === */
.btn-gradient {
    background: linear-gradient(135deg, #04316f 0%, #0080a0 100%);
}

.highlight-cyan {
    color: #33d9ef;
}

.logo-grayscale {
    filter: grayscale(1);
    opacity: 0.6;
}

.logo-footer-inverted {
    filter: brightness(0) invert(1);
}

.stat-label {
    font-size: 11px;
    color: #9a9b9e;
}

.stat-value {
    font-size: 12px;
    font-weight: 600;
    color: #363739;
}

.stat-number-large {
    font-size: 22px;
    font-weight: 700;
    color: #363739;
}

.stat-cyan {
    font-size: 11px;
    color: #0080a0;
    font-weight: 600;
}

.stat-status {
    font-size: 10px;
    color: #22c55e;
}

.note-text {
    font-size: 10px;
    color: #9a9b9e;
    white-space: nowrap;
}

.star-rating-inline {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
}

.progress-track {
    margin-top: 8px;
    height: 4px;
    border-radius: 4px;
    background: #f0f0f0;
}

.progress-fill {
    width: 78%;
    height: 4px;
    border-radius: 4px;
    background: #0080a0;
}

.bg-icon-light {
    background: #e0f4f8;
}

.d-bg-cyan {
    background: #0080a0;
}

.d-c-green {
    background: #33efa0;
}

.d-c-cyan-light {
    background: #33d9ef;
}

.d-c-dark {
    background: #04316f;
}

.d-c-cyan {
    background: #0080a0;
}

.stats-card {
    min-width: 160px;
}

.emoji-large {
    font-size: 20px;
}

.booking-panel-gradient {
    background: linear-gradient(135deg, #04316f 0%, #04316f 50%, #0080a0 100%);
}

.img-hero-scale {
    transform: scale(1.13);
    transform-origin: center center;
}

/* footer */
.footer-miary {
    background-color: #04316f;
    padding: 60px 40px 0;
    color: #c8c9cc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 13px;
    color: #9a9b9e;
    margin-top: 10px;
    line-height: 1.7;
    max-width: 220px;
}

.badge-sav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,128,160,0.15);
    border: 0.5px solid rgba(0,128,160,0.4);
    border-radius: 20px;
    padding: 4px 12px;
    margin-top: 18px;
}

.badge-sav .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0080a0;
}

.badge-sav span {
    font-size: 12px;
    color: #0080a0;
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9b9e;
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
    border-color: #0080a0;
    color: #0080a0;
}

.col-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.col-links a {
    font-size: 13.5px;
    color: #9a9b9e;
    text-decoration: none;
    transition: color 0.2s;
}

.col-links a:hover {
    color: #0080a0;
}

.newsletter-desc {
    font-size: 13px;
    color: #9a9b9e;
    line-height: 1.7;
}

.newsletter-row {
    display: flex;
    margin-top: 14px;
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-row input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 13px;
    color: #fff;
    flex: 1;
    min-width: 0;
}

.newsletter-row input::placeholder {
    color: #6b6c6f;
}

.newsletter-row button {
    background: #0080a0;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
    transition: background 0.2s;
}

.newsletter-row button:hover {
    background: #006080;
}

.newsletter-note {
    font-size: 11.5px;
    color: #6b6c6f;
    margin-top: 9px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12.5px;
    color: #6b6c6f;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12.5px;
    color: #6b6c6f;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #0080a0;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}


