/* ========================================================
   HOTEL DOLCE VITA — BEČIĆI, MONTENEGRO
   One-page website stylesheet
   ======================================================== */

/* ─── CSS Variables ─── */
:root {
    /* Colors */
    --c-navy:       #1a2332;
    --c-navy-light: #243044;
    --c-gold:       #c9a96e;
    --c-gold-light: #d4b97f;
    --c-gold-dark:  #b08d4f;
    --c-cream:      #faf8f5;
    --c-sand:       #e8dcc8;
    --c-sand-light: #f0e8d8;
    --c-white:      #ffffff;
    --c-text:       #3a3a3a;
    --c-text-light: #6b6b6b;
    --c-border:     #e0dcd5;

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py: 100px;
    --container-px: 24px;
    --container-max: 1200px;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.3s ease;
    --t-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

ul {
    list-style: none;
}

/* ─── Utility: Container ─── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ─── Utility: Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--ff-body);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t-base);
    text-decoration: none;
}

.btn--primary {
    background: var(--c-gold);
    color: var(--c-white);
    border-color: var(--c-gold);
}

.btn--primary:hover {
    background: var(--c-gold-dark);
    border-color: var(--c-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
    background: var(--c-white);
    color: var(--c-navy);
    border-color: var(--c-white);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* ─── Utility: Section ─── */
.section {
    padding: var(--section-py) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__label {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--ff-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--c-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.063rem;
    color: var(--c-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--t-base);
    background: transparent;
}

.header--scrolled {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    color: var(--c-white);
}

.header__logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.header__logo-img--mobile {
    display: none;
    height: 32px;
    width: auto;
}

@media (max-width: 480px) {
    .header__logo-img {
        display: none;
    }
    .header__logo-img--mobile {
        display: block;
    }
}

.header__logo-text {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.header__logo-sub {
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-top: 2px;
}

/* Navigation */
.nav__list {
    display: flex;
    gap: 36px;
}

.nav__link {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-gold);
    transition: width var(--t-base);
}

.nav__link:hover,
.nav__link.active {
    color: var(--c-white);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t-base);
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--c-navy);
}

/* Placeholder gradient when images haven't loaded */
.hero__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 30%, #1a5276 60%, #1a2332 100%);
    z-index: 0;
}

/* Slider */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 35, 50, 0.4) 0%,
        rgba(26, 35, 50, 0.3) 50%,
        rgba(26, 35, 50, 0.6) 100%
    );
}

/* Hero content */
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--c-white);
    padding: 0 24px;
}

.hero__welcome {
    font-family: var(--ff-body);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.8;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__subtitle {
    font-family: var(--ff-heading);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Slider dots */
.hero__slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero__slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--t-base);
    padding: 0;
}

.hero__slider-dot.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
    transform: scale(1.2);
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2s ease infinite;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */

.about {
    background: var(--c-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text p {
    margin-bottom: 20px;
    font-size: 1.063rem;
    color: var(--c-text);
    line-height: 1.8;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__text strong {
    color: var(--c-navy);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature {
    padding: 28px 24px;
    background: var(--c-cream);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--c-sand-light);
    color: var(--c-gold-dark);
}

.feature h3 {
    font-family: var(--ff-heading);
    font-size: 1.063rem;
    color: var(--c-navy);
    margin-bottom: 6px;
}

.feature p {
    font-size: 0.813rem;
    color: var(--c-text-light);
    line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   ROOMS / ACCOMMODATION
   ═══════════════════════════════════════════════════════════ */

.rooms {
    background: var(--c-cream);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.room-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card--featured {
    border: 2px solid var(--c-gold);
}

.room-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-sand) 0%, var(--c-sand-light) 100%);
}

.room-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-card__image--placeholder::after {
    content: '📷 Fotografija uskoro';
    font-size: 0.875rem;
    color: var(--c-text-light);
    opacity: 0.7;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.room-card:hover .room-card__image img {
    transform: scale(1.05);
}

/* ── Room card mini gallery ── */
.room-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-gallery__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.room-gallery__track::-webkit-scrollbar {
    display: none;
}

.room-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
}

.room-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    pointer-events: none;
}

.room-card:hover .room-gallery__slide img {
    transform: scale(1.05);
}

.room-gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.room-card:hover .room-gallery__btn {
    opacity: 1;
}

.room-gallery__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.room-gallery__btn--prev { left: 10px; }
.room-gallery__btn--next { right: 10px; }

.room-gallery__btn:disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.room-gallery__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.room-gallery__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.25s, transform 0.25s;
    cursor: pointer;
}

.room-gallery__dot--active {
    background: #fff;
    transform: scale(1.25);
}


    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 0.688rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    background: var(--c-navy);
    color: var(--c-white);
    z-index: 4;
}

.room-card__badge--gold {
    background: var(--c-gold);
}

.room-card__content {
    padding: 28px;
}

.room-card__title {
    font-family: var(--ff-heading);
    font-size: 1.375rem;
    color: var(--c-navy);
    margin-bottom: 10px;
}

.room-card__desc {
    font-size: 0.938rem;
    color: var(--c-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.room-card__amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    color: var(--c-text);
    background: var(--c-cream);
    padding: 6px 12px;
    border-radius: 20px;
}

.room-card__amenities li svg {
    color: var(--c-gold);
    flex-shrink: 0;
}

.room-card__footer {
    padding-top: 4px;
}


/* ═══════════════════════════════════════════════════════════
   BEACH
   ═══════════════════════════════════════════════════════════ */

.beach {
    background: var(--c-white);
}

.beach__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.beach__gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #2d6a8e 100%);
    margin-bottom: 12px;
}

.beach__gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.beach__gallery-placeholder::after {
    content: '🏖️ Fotografija uskoro';
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.beach__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beach__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.beach__gallery-thumb {
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    cursor: pointer;
    transition: opacity var(--t-fast);
}

.beach__gallery-thumb:hover {
    opacity: 0.85;
}

.beach__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beach__info h3 {
    font-family: var(--ff-heading);
    font-size: 1.75rem;
    color: var(--c-navy);
    margin-bottom: 16px;
}

.beach__info > p {
    font-size: 1.063rem;
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.beach__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.beach__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--c-text);
    padding: 12px 16px;
    background: var(--c-cream);
    border-radius: var(--radius-sm);
    transition: background var(--t-fast);
}

.beach__features li:hover {
    background: var(--c-sand-light);
}

.beach__features li svg {
    color: var(--c-gold);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */

.contact {
    background: var(--c-cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__label {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--c-navy);
    letter-spacing: 0.02em;
}

.form__input {
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: 0.938rem;
    color: var(--c-text);
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form__input:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form__input::placeholder {
    color: #bbb;
}

.form__select {
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Info & Map */
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-sand-light);
    color: var(--c-gold-dark);
    flex-shrink: 0;
}

.contact__detail h4 {
    font-family: var(--ff-heading);
    font-size: 0.938rem;
    color: var(--c-navy);
    margin-bottom: 2px;
}

.contact__detail p {
    font-size: 0.875rem;
    color: var(--c-text-light);
    line-height: 1.5;
}

.contact__detail a {
    color: var(--c-gold-dark);
}

.contact__detail a:hover {
    color: var(--c-gold);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact__map iframe {
    display: block;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    background: var(--c-navy);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer__logo-link {
    display: inline-block;
    margin-bottom: 6px;
}

.footer__logo-img {
    height: 110px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer__nav {
    display: flex;
    gap: 28px;
}

.footer__nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--t-fast);
}

.footer__nav a:hover {
    color: var(--c-gold);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all var(--t-fast);
}

.footer__social-link:hover {
    background: var(--c-gold);
    color: var(--c-white);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll-reveal animation helper */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablets (max 1024px) ─── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rooms__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .beach__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ─── Mobile (max 768px) ─── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    /* Mobile nav */
    .header__menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--c-navy);
        padding: 100px 32px 40px;
        transition: right var(--t-base);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav__link::after {
        display: none;
    }

    /* Hero */
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__slider-controls {
        bottom: 60px;
    }

    /* Rooms grid */
    .rooms__grid {
        grid-template-columns: 1fr;
    }

    .room-card__image {
        height: 200px;
    }

    /* Beach */
    .beach__gallery-main {
        height: 240px;
    }

    .beach__gallery-thumb {
        height: 80px;
    }

    /* Form */
    .form__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .section__header {
        margin-bottom: 40px;
    }
}

/* ─── Small mobile (max 480px) ─── */
@media (max-width: 480px) {
    .about__features {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .room-card__content {
        padding: 20px;
    }

    .contact__detail-icon {
        width: 40px;
        height: 40px;
    }
}

/* ─── Form success/error states ─── */
.form__message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form__message--success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form__message--error {
    display: block;
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

/* ─── Mobile menu overlay ─── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════════
   FACILITIES
   ═══════════════════════════════════════════════════════════ */

.facilities {
    background: var(--c-navy);
}

.facilities .section__label {
    color: var(--c-gold);
}

.facilities .section__title {
    color: var(--c-white);
}

.facilities .section__desc {
    color: rgba(255,255,255,0.6);
}

.facilities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.facility-card {
    padding: 48px 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background var(--t-base), transform var(--t-base);
    text-align: center;
}

.facility-card:hover {
    background: rgba(201,169,110,0.08);
    transform: translateY(-4px);
}

.facility-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--c-gold);
    transition: background var(--t-base);
}

.facility-card:hover .facility-card__icon {
    background: rgba(201,169,110,0.2);
}

.facility-card__title {
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 12px;
}

.facility-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .facilities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .facilities__grid {
        grid-template-columns: 1fr;
    }
    .facility-card {
        padding: 36px 24px;
    }
}


/* ═══════════════════════════════════════════════════════════
   EXCURSIONS
   ═══════════════════════════════════════════════════════════ */

.excursions {
    background: var(--c-cream);
}

.excursions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.excursion-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.excursion-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.excursion-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--c-sand);
}

.excursion-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.excursion-card:hover .excursion-card__image img {
    transform: scale(1.05);
}

.excursion-card__image--placeholder {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
}

.excursion-card__image--ostrog {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
}

.excursion-card__image--dubrovnik {
    background: linear-gradient(135deg, #b5451b 0%, #e07b39 100%);
}

.excursion-card__image--skadar {
    background: linear-gradient(135deg, #1a6b3c 0%, #2d9e62 100%);
}

.excursion-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    display: flex;
    align-items: flex-end;
    height: 60px;
}

.excursion-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-white);
    background: rgba(201,169,110,0.85);
    padding: 3px 10px;
    border-radius: 20px;
}

.excursion-card__body {
    padding: 24px;
}

.excursion-card__body h3 {
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 8px;
}

.excursion-card__body p {
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .excursions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */

.testimonials {
    background: var(--c-sand-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--c-border);
    transition: box-shadow var(--t-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
}

.testimonial-card__stars span {
    color: var(--c-gold);
    font-size: 1.125rem;
}

.testimonial-card__text {
    font-size: 0.975rem;
    color: var(--c-text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-navy);
    color: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.938rem;
    color: var(--c-navy);
}

.testimonial-card__author span {
    font-size: 0.813rem;
    color: var(--c-text-light);
}

.testimonials__source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--c-text-light);
    text-align: center;
}

.testimonials__source svg {
    color: #4caf50;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 24px;
    }
}

/* ===================== LANGUAGE TOGGLE ===================== */
.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 5px 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.lang-toggle:hover {
    border-color: var(--c-gold);
    color: #fff;
}

.lang-toggle__sr,
.lang-toggle__en,
.lang-toggle__ru {
    color: #fff;
    transition: color 0.2s;
}

.lang-toggle__active {
    color: var(--c-gold);
    font-weight: 700;
}

.lang-toggle__sep {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 3px;
}

/* Scrolled header: still dark bg (navy 0.95) → keep white text */
.header--scrolled .lang-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.header--scrolled .lang-toggle__sr,
.header--scrolled .lang-toggle__en,
.header--scrolled .lang-toggle__ru {
    color: #fff;
}

.header--scrolled .lang-toggle:hover {
    border-color: var(--c-gold);
}

.header--scrolled .lang-toggle__active {
    color: var(--c-gold);
}

.header--scrolled .lang-toggle__sep {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .lang-toggle {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}