:root {
    --primary: #c86733;
    --primary-dark: #a45221;
    --secondary: #2b2623;
    --accent: #5f6f52;
    --bg: #f7f2ec;
    --surface: #ffffff;
    --muted: #6d6259;
    --text: #2f2a26;
    --border: rgba(107, 98, 89, 0.15);
    --shadow-soft: 0 12px 32px rgba(30, 25, 21, 0.12);
    --shadow-small: 0 6px 18px rgba(30, 25, 21, 0.12);
}

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

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--primary);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 242, 236, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(47, 42, 38, 0.12);
    box-shadow: 0 6px 18px rgba(30, 25, 21, 0.08);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lang-btn:hover,
.lang-btn:focus {
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-small);
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--secondary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-small);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: rgba(47, 42, 38, 0.25);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

#travelTimeButton {
    font-size: 1.1rem;   /* default is around 1rem */
    padding: 1rem 2rem;   /* optional: increase padding so it scales nicely */
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

main > section {
    padding: 5rem 0;
}

.hero {
    background: linear-gradient(135deg, #2f2a26, #463a32);
    color: #fff;
    padding: 5.5rem 0 4.5rem;
}

.hero .container {
    position: relative;
}

.hero-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 4.2vw, 2.9rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-highlights dd {
    font-size: 1.2rem;  /* adjust this value as needed */
    font-weight: 500;   /* optional, for stronger look */
    color: rgba(255, 255, 255, 0.9); /* keep readability */
}

.hero-text p[data-i18n="hero.description"] {
    font-size: 1.2rem;   /* adjust as desired */
    line-height: 1.6;
}

.section-header p[data-i18n="services.description"] {
    font-size: 1.2rem;   /* adjust as desired */
    line-height: 1.6;
}

.hero-highlights dt {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.hero-visual figure {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.hero-visual img {
    width: 100%;           /* fill the figure width */
    max-height: 420px;     /* set your desired height cap (try 360–520px) */
    object-fit: cover;     /* crop overflow nicely */
    border-radius: 12px;   /* inner photo rounding */
}

.hero-visual figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--muted);
}

.services {
    background: var(--bg);
}

.service-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
    background: var(--surface);
    padding: 2rem 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-small);
    display: grid;
    gap: 1rem;
}

.service-card .icon {
    font-size: 1.75rem;
}

.service-card h3 {
    font-size: 1.3rem;   /* make titles a bit larger */
    font-weight: 600;    /* emphasize the heading */
    color: var(--secondary);
}

.service-card p {
    font-size: 1.1rem;  /* smaller than the heading */
    line-height: 1.5;
    color: var(--muted);
}

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-text .feature-list {
    list-style: none;
    display: grid;
    gap: 1.25rem;
}

.about-text .feature-list li strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.about-visual {
    display: grid;
    gap: 1.5rem;
}

.about-card {
    background: var(--bg);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-small);
}

.about-card h3 {
    margin-bottom: 1rem;
}

.about-card ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-stats > div {
    background: var(--surface);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    min-width: 150px;
    text-align: center;
}

.about-stats strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.process {
    background: var(--bg);
}

.process-steps {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-small);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(200, 103, 51, 0.15);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.reviews {
    background: var(--surface);
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reviews-intro {
    max-width: min(720px, 100%);
}

.reviews-intro p {
    color: var(--muted);
}

.reviews-content {
    position: relative;
}

.reviews-carousel {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
    padding-block: 0.5rem;
    scrollbar-width: none;
}

.reviews-viewport::-webkit-scrollbar {
    display: none;
}

.reviews-list {
    display: flex;
    gap: 1.25rem;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    padding-inline: 0.25rem;
}

.reviews-list:focus-visible {
    outline: none;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: none;
    background: rgba(43, 38, 35, 0.9);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    box-shadow: var(--shadow-small);
    z-index: 2;
}

.reviews-nav span {
    font-size: 1.5rem;
    line-height: 1;
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.reviews-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    transform: translateY(-50%);
}

.reviews-nav-prev {
    left: -0.75rem;
}

.reviews-nav-next {
    right: -0.75rem;
}

.review-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-small);
    font-size: 0.95rem;
    display: grid;
    gap: 0.85rem;
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.review-author:hover,
.review-author:focus-visible {
    text-decoration: underline;
}

.review-details {
    font-size: 0.85rem;
    color: var(--muted);
}

.review-rating {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.review-time {
    font-size: 0.8rem;
    color: var(--muted);
}

/* About section */
.about-text p {
    font-size: 1.1rem;   /* description text */
    line-height: 1.6;
}

.about-text .feature-list span {
    font-size: 1.05rem;   /* smaller for supporting text */
}

/* About card */
.about-card p {
    font-size: 1.1rem;
    line-height: 1.55;
}

.about-card ul li {
    font-size: 1.0rem;
}

/* Process steps */
.process-step p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Location */
.location-info p {
    font-size: 1.2rem;
    line-height: 1.55;
}

.travel-estimate p {
    font-size: 1.1rem;
}

/* Contact */
.contact-info p,
.contact-info li {
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-callout p {
    font-size: 0.95rem;
}

.contact-callout .note {
    font-size: 0.85rem; /* keep the note a bit smaller */
}


@media (min-width: 640px) {
    .reviews-list {
        padding-inline: 0.5rem;
    }

    .review-card {
        flex-basis: calc((100% - 1.25rem) / 2);
    }
}

@media (min-width: 992px) {
    .review-card {
        flex-basis: calc((100% - 2.5rem) / 3);
    }
}

@media (max-width: 640px) {
    .reviews-nav {
        width: 2.4rem;
        height: 2.4rem;
        background: rgba(43, 38, 35, 0.8);
    }

    .reviews-nav-prev {
        left: 0.5rem;
    }

    .reviews-nav-next {
        right: 0.5rem;
    }
}

.review-text {
    color: var(--text);
    line-height: 1.7;
}

.location {
    background: var(--bg);
}

.location-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.location-info p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.travel-estimate {
    background: var(--surface);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-small);
    display: grid;
    gap: 0.85rem;
    max-width: 360px;
}

.travel-result {
    font-weight: 500;
    color: var(--secondary);
}

.location-map iframe {
    width: 100%;
    min-height: 600px;
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.contact-info p,
.contact-info li,
.contact-callout p {
    color: var(--muted);
}

.contact-info ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.opening-hours h3 {
    margin-bottom: 0.5rem;
}

.contact-callout {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-small);
    display: grid;
    gap: 1rem;
}

.contact-callout .note {
    font-size: 0.9rem;
}

.site-footer {
    background: #1f1a17;
    color: rgba(255, 255, 255, 0.85);
    padding: 3.5rem 0 2.5rem;
}

.site-footer .logo {
    color: #fff;
}

.site-footer .footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2.5rem;
}

.site-footer h3 {
    margin-bottom: 0.75rem;
    color: #fff;
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.to-top:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 880px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--surface);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
        padding: 1.5rem;
        border-radius: 18px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .language-switch {
        background: var(--surface);
        border: 1px solid var(--border);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding-top: 5rem;
    }
}

@media (max-width: 520px) {
    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Telefoni: dodaj razmik med jezikovnim preklopom in hamburgerjem */
@media (max-width: 640px) {
  .language-switch { margin-right: 0.75rem; } /* odmakne od menija */
  .nav-toggle { display: flex; margin-left: 0.75rem; } /* odmakne od jezikov */
}


/* Footer – popravek seznama (delovni čas) */
.site-footer ul {
  list-style: none;       /* odstrani pike */
  padding-left: 0;        /* odstrani privzeti odmik */
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.4rem;  /* malo prostora med vrsticami */
  padding-left: 1rem;     /* notranji odmik za poravnavo */
  position: relative;
}

/* Če želiš, lahko dodaš ikono/črtico namesto pikice */
.site-footer ul li::before {
  content: "•";              /* ali "✔", "–" */
  color: var(--primary);     /* barva iz teme */
  position: absolute;
  left: 0;
}


@media (max-width: 768px) {
  .main-nav a {
    font-size: 0.95rem; /* malo manjša pisava */
    font-weight: 500;
  }
}

.main-nav a {
  white-space: nowrap;
}


