:root {
    color-scheme: dark;
    --bg: #060505;
    --surface: #120f0d;
    --surface-strong: #1c1816;
    --text: #f5f1ec;
    --muted: #c9b99a;
    --gold: #bfa86c;
    --gold-soft: #d8c58f;
    --border: rgba(191, 168, 108, 0.22);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(212, 179, 106, 0.08), transparent 20%),
                linear-gradient(180deg, #060505 0%, #090707 100%);
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

.hero-copy {
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-copy h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.hero-copy p {
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 2.05;
    margin-top: 1rem;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.subtitle {
    max-width: 48rem;
    margin: 1rem 0 1.6rem;
    font-size: 1.18rem;
    line-height: 2.1;
    letter-spacing: 0.005em;
    color: var(--muted);
}

a {
    color: var(--gold);
    text-decoration: none;
}

.salon-card-panel {
    padding: 2rem;
}

.salon-card {
    display: grid;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.salon-card-copy h2 {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

.salon-card-copy p {
    max-width: 38rem;
    color: var(--muted);
    line-height: 1.95;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.salon-card-features {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-left: 2rem;
}

.salon-card-features p {
    color: var(--gold-soft);
    font-weight: 600;
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.salon-card-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.salon-card-features li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.salon-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.55rem;
    height: 0.55rem;
    background: var(--gold);
    border-radius: 50%;
}

@media (min-width: 860px) {
    .salon-card {
        grid-template-columns: 1fr 420px;
        align-items: center;
    }

    .salon-card-copy p {
        margin-bottom: 1.2rem;
    }
}

a:hover {
    color: var(--gold-soft);
}

header {
    padding: 1.4rem 1.5rem 1rem;
    position: static;
    background: rgba(10, 8, 7, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 1.12rem;
    letter-spacing: 0.08em;
    padding-bottom: 0.45rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-soft);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

h1,
h2,
h3,
.feature-card h3,
.service-card h2 {
    margin: 0;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 4.6vw, 4.1rem);
    line-height: 1.02;
}

h2 {
    font-size: clamp(1.95rem, 2.8vw, 2.9rem);
    line-height: 1.1;
}

.subtitle,
p {
    color: var(--muted);
    line-height: 1.8;
}

.subtitle {
    max-width: 48rem;
    margin: 1rem 0 1.6rem;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--muted);
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

nav a.active,
nav a:hover {
    color: var(--gold);
}

main {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.hero-overview + .section-panel,
.section-panel + .info-grid {
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.section-panel,
.hero-overview,
.info-grid,
.card-grid,
.about-grid,
.contact-grid,
.feature-card,
.service-card,
.contact-panel,
.map-card,
.about-profile {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-overview {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 2.4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1.4rem;
    margin-bottom: 1.1rem;
}

.profile-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.profile-copy p {
    color: var(--muted);
    line-height: 1.95;
    margin-top: 1rem;
}

.profile-copy p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .about-profile {
        grid-template-columns: 1fr;
    }
}

.hero-copy h2 {
    margin-bottom: 1rem;
}

.hero-copy p {
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 2;
    margin-top: 1rem;
    color: var(--muted);
    letter-spacing: normal;
}

.subtitle {
    max-width: 48rem;
    margin: 1rem 0 1.6rem;
    font-size: 1.03rem;
    line-height: 2;
    letter-spacing: normal;
}

.hero-highlights {
    display: grid;
    gap: 1rem;
}

.feature-card,
.service-card,
.contact-panel,
.map-card {
    padding: 2.4rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1.4rem;
    text-align: center;
    justify-items: center;
    min-height: 340px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.18), transparent 45%);
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 215, 0, 0.24);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover h2 {
    color: var(--gold);
}


.feature-card h3,
.service-card h2 {
    font-size: 1.95rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.service-card h2::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    margin: 0.9rem auto 0;
    border-radius: 999px;
    background: var(--gold);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 1.8rem;
}

.gallery-card {
    position: relative;
    display: grid;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.07);
    transform-origin: center center;
    border-color: rgba(255, 215, 0, 0.22);
    box-shadow: 0 36px 82px rgba(0, 0, 0, 0.28);
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card .gallery-copy {
    padding: 1.8rem;
    text-align: center;
}

.gallery-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}

.gallery-card p {
    color: var(--muted);
    line-height: 1.8;
}

.feature-card p,
.service-card p,
.contact-panel p,
.info-grid p,
.about-grid p {
    color: var(--muted);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    text-align: left;
}

.service-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.99rem;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--gold-soft);
    font-size: 1.1rem;
    line-height: 1;
}

.service-price {
    margin-top: 1.4rem;
    color: var(--gold-soft);
    font-weight: 600;
    line-height: 1.5;
}

.service-price strong {
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #111;
    border-radius: 999px;
    padding: 1rem 1.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(212, 179, 106, 0.22);
}

.card-grid,
.about-grid,
.info-grid,
.contact-grid {
    display: grid;
    gap: 1.5rem;
}

.card-grid,
.about-grid,
.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-grid {
    display: block;
}

.info-panel {
    padding: 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.info-panel__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.info-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-height: 180px;
    padding: 1rem 0.8rem;
}

.info-block h3 {
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #fff;
}

.info-block + .info-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-panel p,
.info-panel address {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

@media (min-width: 760px) {
    .info-block + .info-block {
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.about-salon-gallery {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: stretch;
    padding: 2.4rem;
    min-height: 460px;
}

.salon-copy {
    display: grid;
    gap: 1rem;
    justify-content: center;
    text-align: center;
}

.salon-copy h2 {
    font-size: 2rem;
    margin-bottom: 0.45rem;
}

.salon-copy p {
    color: var(--muted);
    line-height: 1.9;
    max-width: 32rem;
    margin: 0 auto;
}

.salon-copy-list {
    display: grid;
    gap: 0.65rem;
    text-align: center;
    padding-top: 0.5rem;
}

.salon-copy-list span {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: block;
}

.salon-copy-list span::before {
    display: none;
}

.salon-carousel {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.slider-controls {
    position: absolute;
    inset: auto 1rem 1rem;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 2rem);
    pointer-events: none;
}

.slider-button {
    pointer-events: all;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}


.modal-nav-button {
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    z-index: 2100;
}

.modal-prev {
    left: 1.25rem;
}

.modal-next {
    right: 1.25rem;
}

.modal-nav-button:hover {
    background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 980px) {
    .about-salon-gallery {
        grid-template-columns: 1fr;
    }

    .slider-button {
        width: 2.6rem;
        height: 2.6rem;
    }

    .slide img {
        height: 320px;
    }
}
.contact-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(400px, 1.2fr);
}

.contact-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1.2rem;
    text-align: center;
    justify-items: center;
    min-height: 380px;
    padding: 2.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 40%);
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.18);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.contact-panel:hover::before {
    opacity: 1;
    transform: scale(1);
}

.contact-panel h2 {
    font-size: 1.95rem;
    margin-bottom: 0.7rem;
}

.contact-panel h2::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    background: var(--gold);
}

.contact-detail {
    margin: 0.65rem 0;
    color: var(--text);
}

.contact-detail strong {
    color: var(--gold);
}

.contact-copy {
    margin: 1rem 0;
}

.contact-meta {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-meta div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.map-card {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 2.4rem;
    overflow: hidden;
    min-height: 520px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.14), transparent 45%);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.map-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.18);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.map-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.map-header {
    max-width: 100%;
}

.map-card h3 {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.map-copy {
    color: var(--muted);
    line-height: 1.8;
    max-width: 39rem;
    margin: 0 auto;
}

.map-frame {
    width: 100%;
    min-height: 460px;
    border: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

footer {
    padding: 1.5rem 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .header-inner,
    .hero-overview,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    header {
        padding-top: 1rem;
    }
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-overview {
        padding: 1.6rem;
    }
    .feature-card,
    .service-card,
    .contact-panel,
    .map-card {
        padding: 1.4rem;
    }
    h1 {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }
}

.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 1.5rem;
}

.image-modal.open {
    display: grid;
}

.modal-image {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.feature-card {
    position: relative;
    padding: 2.4rem;
    min-height: 280px;
    display: grid;
    gap: 1rem;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card--makeup {
    background-image: url('../Slike/Radovi/WhatsApp Image 2026-04-10 at 22.51.41 (3).jpeg');
}

.feature-card--brows {
    background-image: url('../Slike/Radovi/WhatsApp Image 2026-04-10 at 22.51.42 (1).jpeg');
}

.feature-card--tan {
    background-image: url('../Slike/Radovi/WhatsApp Image 2026-04-10 at 22.51.43.jpeg');
}

.feature-card h3 {
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.feature-card p {
    color: #f5f1ec;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: auto;
    min-width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(223, 193, 117, 1), rgba(191, 168, 108, 1));
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #111;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
    font-size: 1.7rem;
    font-weight: 900;
    z-index: 3000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(245, 215, 140, 1), rgba(211, 179, 102, 1));
}
