/* ========================================================
   HOTEL MINI CITY – ABOUTUS.CSS
   ======================================================== */

/* ── Intro section ── */
.au-intro {
    background-color: #fff;
    background-image: url(/images/hotelcontactbg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: clamp(52px, 8vw, 96px) clamp(24px, 8vw, 120px) clamp(44px, 6vw, 72px);
    border-bottom: 1px solid rgba(201,160,122,0.2);
}
.au-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    pointer-events: none;
}
.au-intro-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.au-intro-logo {
    width: clamp(80px, 14vw, 130px);
    height: auto;
    margin-bottom: clamp(28px, 4vw, 44px);
    display: block;
}

.au-intro-title {
    font-family: 'CaviarDreams', serif;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 900;
    color: #2a1a0e;
    -webkit-text-stroke: 0.2px #2a1a0e;
    letter-spacing: 0.5px;
    line-height: 1.55;
    margin: 0 0 20px;
}

.au-intro-address {
    color: #c9a07a;
    -webkit-text-stroke: 0.2px #c9a07a;
    white-space: nowrap;
}

.au-intro-text {
    font-size: clamp(0.88rem, 1.3vw, 0.98rem);
    color: rgba(42,26,14,0.65);
    line-height: 1.9;
    margin: 0 0 36px;
    max-width: 680px;
}

/* ── Pill links ── */
.au-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.au-pill {
    display: inline-flex;
    align-items: center;
    font-family: 'CaviarDreams', serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #3e2a1c;
    border: 1.5px solid rgba(42,26,14,0.2);
    border-radius: 40px;
    padding: 9px 20px;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.au-pill:hover {
    border-color: #c9a07a;
    background: rgba(201,160,122,0.06);
    color: #2a1a0e;
}

.au-pill--accent {
    background: #003580;
    border-color: #003580;
    color: #fff;
}

.au-pill--accent:hover {
    background: #00276b;
    border-color: #00276b;
    color: #fff;
}

/* ── Stats strip ── */
.au-stats-strip {
    background: #2a1a0e;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 8vw, 120px);
}

.au-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.au-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 clamp(24px, 4vw, 56px);
}

.au-stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(201,160,122,0.25);
    flex-shrink: 0;
}

.au-stat-n {
    font-family: 'CaviarDreams', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #c9a07a;
    -webkit-text-stroke: 0.3px #c9a07a;
    line-height: 1;
}

.au-stat-l {
    font-family: 'CaviarDreams', serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: center;
    white-space: nowrap;
}

/* ── Lokacija ── */
.au-loc {
    background: #faf8f5;
    border-top: 1px solid rgba(201,160,122,0.18);
    border-bottom: 1px solid rgba(201,160,122,0.18);
    padding: clamp(56px, 8vw, 100px) clamp(24px, 8vw, 120px);
}

.au-loc-split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.au-loc-block {}

.au-loc-eyebrow {
    font-family: 'CaviarDreams', serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a07a;
    margin: 0 0 8px;
}

.au-loc-title {
    font-family: 'CaviarDreams', serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 900;
    color: #2a1a0e;
    -webkit-text-stroke: 0.3px #2a1a0e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.au-loc-desc {
    font-size: 0.9rem;
    color: rgba(42,26,14,0.68);
    line-height: 1.85;
    margin: 0;
}

.au-loc-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-loc-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.au-loc-img-wrap:hover .au-loc-img {
    transform: scale(1.03);
}


/* ── Reviews – light theme override ── */
.rev-section--light {
    background: #faf8f5;
    padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 60px);
}

.rev-section--light .rev-heading {
    color: #2a1a0e;
    -webkit-text-stroke: 0.4px #2a1a0e;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.rev-section--light .rev-card {
    background: #fff;
    border-color: rgba(0,0,0,0.07);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.rev-section--light .rev-card:hover {
    border-color: rgba(201,160,122,0.4);
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.rev-section--light .rev-headline {
    color: #2a1a0e;
    -webkit-text-stroke: 0.15px #2a1a0e;
}

.rev-section--light .rev-text    { color: rgba(42,26,14,0.6); }
.rev-section--light .rev-name    { color: #2a1a0e; -webkit-text-stroke: 0.1px #2a1a0e; }
.rev-section--light .rev-country { color: rgba(42,26,14,0.45); }
.rev-section--light .rev-date    { color: rgba(42,26,14,0.3); }
.rev-section--light .rev-author  { border-top-color: rgba(0,0,0,0.07); }

.rev-section--light .rev-translate-btn {
    border-color: rgba(201,160,122,0.4);
    color: #997a61;
}
.rev-section--light .rev-translate-btn:hover:not(:disabled) {
    border-color: #c9a07a;
    color: #3e2a1c;
    background: rgba(201,160,122,0.08);
}

.rev-section--light .rev-ctrl {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.15);
    color: #3e2a1c;
}
.rev-section--light .rev-ctrl:hover:not(.lm-disabled) {
    background: rgba(201,160,122,0.15);
    border-color: #c9a07a;
}

.rev-section--light .rev-dot-btn        { background: rgba(0,0,0,0.15); }
.rev-section--light .rev-dot-btn.active { background: #c9a07a; }

.rev-section--light .rev-attribution   { color: rgba(42,26,14,0.3); }
.rev-section--light .rev-attribution a { color: rgba(201,160,122,0.8); }
.rev-section--light .rev-attribution a:hover { color: #997a61; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .au-loc-split {
        grid-template-columns: 1fr;
    }
    .au-loc-img-wrap {
        order: -1;
    }
    .au-loc {
        padding: clamp(36px, 6vw, 56px) 20px;
    }
    .au-stats-strip {
        padding: clamp(24px, 4vw, 36px) 20px;
    }
    .au-stat-sep {
        height: 36px;
    }
    .au-stat-item {
        padding: 0 clamp(16px, 3vw, 32px);
    }
    .au-stat-l {
        white-space: normal;
        max-width: 80px;
    }
}

@media (max-width: 600px) {
    .au-intro {
        padding: clamp(40px, 8vw, 60px) 20px clamp(36px, 6vw, 52px);
    }
    .au-intro-address {
        white-space: normal;
    }
    .au-pill {
        font-size: 9px;
        padding: 8px 16px;
        letter-spacing: 2px;
    }
}
