/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --bg: #0b0b0b;          /* primarno ozadje (črno) */
  --fg: #ffffff;          /* primarni tekst */
  --muted: #bfbfbf;       /* sekundarni tekst */
  --accent: #F1EDE9;      /* poudarek po smernicah */
  --max: 1120px;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  overscroll-behavior: contain;
  padding-top: 72px; /* prostor za fiksni header */
  text-align: justify;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg {
  display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 42px 0;
  scroll-margin-top: 80px; /* odvisno od višine headerja */
}

#o-meni, #zakaj {
  background-color: #A3998F;
}

#instagram {
  background-color: #3F4A3C;
}

#o-meni .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 60px;
  align-items: center;
}

#o-meni img {
  width: 100%; 
  height: auto;
  border-radius: 80px 80px 10px 10px; 
  border: none;
}

#o-meni p {
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: left; 
}

#o-meni em {
  display: block;
  margin-top: 30px;
  font-family: inherit;
  font-style: italic;
  color: #2D362B;
  border-left: 2px solid #3F4A3C;
  padding-left: 15px;
}


/* ==========================================================================
   Header / Nav
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: saturate(120%) blur(6px);
  background: rgba(11, 11, 11, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  margin: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center; /* 🔸 vertikalno poravna elemente na sredino */
  gap: 22px;
}

.menu a {
  color: var(--fg);
  opacity: .95;
  font-weight: 500;
}

.burger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--fg);
  padding: 6px 10px;
  border-radius: 8px;
}

/* CTA (global + header override) */
.cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  letter-spacing: .02em;
}

header .cta {
  background: #F1EDE9;       /* bež ozadje */
  color: #1b1b1b !important; /* temno besedilo */
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 100px 20px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero-new.jpg') center / cover no-repeat;
  filter: brightness(.55);

}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 96px 20px 72px;
}

/* Typography */
.kicker {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: .3em 0 .1em;
  font-size: clamp(38px, 6.2vw, 70px);
  line-height: 1.02;
  letter-spacing: .02em;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.12;
  letter-spacing: .02em;
}

h1 .kin,
h2 .kin {
  font-weight: 300; /* mehkejši del besede */
  opacity: .7;
  letter-spacing: .01em;
}

.sub {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #e7e7e7;
}

.lead {
  margin: 0 0 18px;
  color: #e5e5e5;
}

/* Fade-in animacija za naslov */
.fade-title {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInTitle 1.6s ease forwards;
  animation-delay: .3s;
}

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

/* ==========================================================================
   Grids & Media
   ========================================================================== */
.grid {
  display: grid;
  gap: 28px;
  align-items: start;
  grid-template-columns: 1.1fr .9fr;
}

.grid img,
.media {
  width: 76%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}

/* Bulleted list */
.bullets {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bullets li {
  position: relative;
  padding-left: 26px;
  color: #e2e2e2;
}

.bullets li::before {
  position: absolute;
  top: 13px;
  left: 4px;
  font-size: 22px;
  line-height: 0;
  color: var(--accent);
}

/* Cards */
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.card {
  /* Combined background with transparency */
  background: rgba(241, 237, 233, 0.85); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  color: #111;
  border: 1px solid rgba(217, 210, 197, 0.4);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

/* Styling the Icons */
.card-icon {
  display: block;
  margin-bottom: 12px; /* Space between icon and text */
  color: #2D362B;      /* Deep Forest Green */
  width: 32px;         /* Icon size */
  height: 32px;
  stroke-width: 1.5px; /* Keeps the lines thin and elegant */
}

/* Align icon and title on the same line */
.card-header {
  display: flex;
  align-items: center; /* Vertically centers the icon with the text */
  gap: 12px;           /* Space between icon and title */
  margin-bottom: 10px; /* Space between header and description */
}

/* Adjust the icon so it doesn't have a bottom margin anymore */
.card-icon {
  flex-shrink: 0;      /* Prevents the icon from squishing if text is long */
  color: #2D362B;
  width: 24px;         /* Slightly smaller icon usually looks better inline */
  height: 24px;
  stroke-width: 2px;
}

.card-content {
  font-size: 0.95rem;  /* Slightly smaller description text creates better hierarchy */
  line-height: 1.5;
  color: #444;         /* Soften the description text color slightly */
}



/* Notes */
.note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   Contact section
   ========================================================================== */

.contact-flex {
  display: flex;
  gap: 60px; /* Increased from 30px for much better breathing room */
  margin-top: 40px;
  align-items: stretch;
}

.contact-form-side, 
.contact-map-side {
  flex: 1.2; /* Each takes 50% */
  min-width: 0; /* Prevents overflow */
  padding-right: 20px;
}

.contact-map-side iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact .box {
  max-width: 1100px !important; /* Overriding line 231 of your CSS */
  width: 95%;
  text-align: left; /* Better for side-by-side reading */
  background: #A3998F !important;
  border: 1px solid #D9D2C5;
  padding: 40px;  
  color: #1b1b1b;
  border-radius: 12px;
} 
   
.contact {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Typography Contrast Fixes */
.contact h2 { color: #1b1b1b; }
.lead-dark { color: #444; font-size: 1.1rem; margin-bottom: 10px; }
.address-dark { color: #666; margin-bottom: 30px; line-height: 1.4; }

/* Input Field Styling */
.contact-form-side label {
  color: #2D362B; /* Deep Forest Green */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 20px;
}

.contact-form-side input, 
.contact-form-side textarea {
  background: #ffffff !important; /* White background for text contrast */
  color: #1b1b1b !important;      /* Dark text inside inputs */
  border: 1px solid #D9D2C5;
  border-radius: 8px;
  padding: 12px;
  margin-top: 5px;
}

.contact-form-side input::placeholder, 
.contact-form-side textarea::placeholder {
  color: #aaa;
}

/* Form feedback (success / error after submit) */
.form-feedback {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-feedback--success {
  background: rgba(63, 74, 60, 0.2);
  border: 1px solid #3F4A3C;
  color: #2D362B;
}
.form-feedback--error {
  background: rgba(180, 60, 50, 0.12);
  border: 1px solid rgba(180, 60, 50, 0.4);
  color: #8b3329;
}

/* GDPR and Button */
.consent-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: #444;
  font-size: 0.9rem;
}

.consent-dark label {
  margin: 0;
  text-transform: none;
  font-weight: 400;
  color: #444;
}

.cta-dark {
  background: #3F4A3C; /* Forest Green */
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-dark:hover {
  background: #2D362B;
}



/* ==========================================================================
   Footer / Branding
   ========================================================================== */
footer {
  padding: 28px 0 40px;
  font-size: 14px;

  background-color: #2B2B2B;
  font-color: #F5F3F1;
}

.logo {
  width: 140px;
  height: 60px;
  margin: 0 auto 16px;
  background: url('images/logo-terrakin.jpg') center / contain no-repeat;
  filter: none;
}

.address {
  color: #e4e4e4;
}

/* ==========================================================================
   Forms
   ========================================================================== */
form label {
  display: block;
  margin: 10px 0 6px;
  text-align: left;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--fg);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
}

textarea {
  min-height: 120px;
}

.consent {
  display: flex;
  gap: 10px;

  text-align: left;
  font-size: 14px;
  color: #d9d9d9;
}

.consent input {
  width: auto;
}

.small {
  font-size: 13px;
  color: #cfcfcf;
}

/* ==========================================================================
   Social links (Instagram section)
   ========================================================================== */
.social-links {
  text-align: center;
  padding: 10px 0 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links .intro {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-links .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.social-links a:hover {
  opacity: .8;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */
.accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  color: #1b1b1b;      /* temno besedilo zaradi svetlega ozadja */
  background: #F1EDE9; /* enaka barva kot v Storitve */
  border: none;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: #1b1b1b; /* temna tipografija */
  background: transparent;
  border: 0;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-header .icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #1b1b1b;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 50%;
  transition: transform .25s ease;
}

.accordion-panel-inner {
  padding: 0 18px 18px;
  color: #2c2c2c;
}

.accordion-panel {
  /* Skrije panel vsebine (panel je privzeto zaprt) */
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease; /* ohrani animacijo */
}

/* Stanje 'razprto' se nastavi z JS in povozimo height:0 z inline stilom: panel.style.height = h; */

.accordion-item[aria-expanded="true"] .accordion-header .icon {
  transform: rotate(45deg); /* Dodaten stajling za vizualni plus (+) v križ (X) */
}

/* ==========================================================================
   Back-to-top button
   ========================================================================== */
#scrollTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  color: #1b1b1b;
  background: #F1EDE9;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, box-shadow .3s ease;
}

#scrollTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, .2);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#storitve {
  position: relative;
  z-index: 1;
  padding: 163px 0; /* Adds space around the cards */
  overflow: hidden;
}

#storitve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 121%;
  height: 100%;
  background-image: url('images/consult.jpg'); /* Uses your existing image */
  background-size: cover;
  background-position: top;
  opacity: 0.50; /* Keeps it subtle */
  z-index: -1;
  pointer-events: none;
}

/* Sekcija Zakaj - Splošno */
#zakaj {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Razporeditev v dve koloni */
.zakaj-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Stil za besedilo na levi */
.zakaj-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.custom-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.custom-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Stil za License Box na desni */
.license-box {
  background: #3F4A3C;
  border: 1px solid rgba(241, 237, 233, 0.15);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(5px);
}

/* Poravnava ikone in naslova v isto vrsto */
.license-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.license-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.license-header h3 {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Seznam licenc */
.license-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.license-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  
  /* Uporabimo čisto belo, vendar jo rahlo ublažimo z opacity, 
     da ne "reže" v oči na temnem ozadju */
  color: #ffffff; 
  opacity: 0.95; 
  
  /* Povečamo debelino pisave na 500 (Medium), da črke na temni podlagi 
     izgledajo bolj polne in stabilne */
  font-weight: 500; 
  text-align: left;
  letter-spacing: 0.02em; /* Rahlo povečamo razmik med črkami za boljšo čitljivost */
}

.license-list li:last-child {
  border-bottom: none;
}

/* Section gallery – Zakaj & Koncept */
.gallery-carousel {
  margin-top: 40px;
  max-width: var(--max);
}

.gallery-carousel-prev,
.gallery-carousel-next {
  display: none;
}

.section-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
}

.section-gallery .gallery-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
}

.section-gallery .gallery-thumb:hover {
  border-color: rgba(241, 237, 233, 0.25);
}

.section-gallery .gallery-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.section-gallery .gallery-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(241, 237, 233, 0.15);
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(241, 237, 233, 0.25);
  color: var(--fg);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 36px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responzivnost za tablice in telefone */
@media (max-width: 840px) {
  .zakaj-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zakaj-content h2 {
    text-align: center;
  }

  .license-box {
    padding: 30px;
  }

  .section-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }

  .section-gallery .gallery-thumb img {
    height: 140px;
  }
}
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 840px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .menu.open {
    position: absolute;
    top: 68px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
  }

  .burger {
    display: inline-block;
  }
  

.slikca {
    width: 95% !important; /* Forces the width to 95% */
    margin: 0 auto;        /* Centers it if it's smaller than the screen */
    height: auto;          /* Maintains aspect ratio */
  }
}

#storitve {
	padding: 150px;
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 16px 60px; /* manj prostora zgoraj na telefonih */
    min-height: 39vh;
  }
  .cta {
    margin-bottom: 10px;
  }

  /* Mobile gallery carousel: one visible image, arrows, clickable */
  .gallery-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
  }

  .gallery-carousel-prev,
  .gallery-carousel-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .gallery-carousel-prev {
    left: 8px;
  }

  .gallery-carousel-next {
    right: 8px;
  }

  .gallery-carousel-track {
    overflow: hidden;
    width: 100%;
  }

  .gallery-carousel-track .section-gallery {
    display: flex;
    width: 400%;
    margin: 0;
    gap: 0;
    transition: transform 0.3s ease;
  }

  .gallery-carousel-track .section-gallery .gallery-thumb {
    position: relative;
    flex: 0 0 25%;
    min-width: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(241, 237, 233, 0.2);
  }

  .gallery-carousel-track .section-gallery .gallery-thumb img {
    height: 200px;
  }
  
  .slikca { 
  width: 92% !important;
  }
  
  .cards {
    /* Changes from 2 columns to 1 column on smaller screens */
    grid-template-columns: 1fr; 
    gap: 12px;
  }

  .card {
    padding: 20px; /* Slightly less padding to save screen space */
  }

  .card-header strong {
    font-size: 1.1rem; /* Ensures titles stay legible */
  }
  
  .contact .box {
    width: 80%;
	border-radius: 12px;
  } 
  
  .contact-flex {
    display: block;
  }
  
  #storitve {
     padding: 90px 0; /* Adds space around the cards */
  }
  
  #storitve::before {
	 background-image: none !important; 
     opacity: 1;
	 background-color: #4D4440;
  }  
  
#o-meni .grid {
    grid-template-columns: 1fr; /* Stack text and image in one column */
    gap: 30px;                  /* Reduce gap for mobile screens */
    text-align: left;           /* Ensure text remains readable */
  }

  #o-meni .grid div:first-child {
    order: 2; /* Moves the text below the image for better visual flow */
  }

  #o-meni .grid div:last-child {
    order: 1; /* Moves the image to the top */
  }

  #o-meni img {
    width: 85%;                 /* Slightly smaller image on mobile */
    margin: 0 auto;             /* Center the image */
    border-radius: 60px 60px 20px 20px; /* Scaled down arch shape */
  }
  
.contact-map-side iframe {
  width: 110%;
  }
}

/* ==========================================================================
   Cookie consent – fixed floater
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(241, 237, 233, 0.1);
  padding: 16px 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-desc {
  margin: 0;
  font-size: 0.82rem;
  color: #9a9690;
  line-height: 1.5;
}

.cookie-desc a {
  color: #F1EDE9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn--decline {
  background: transparent;
  border: 1px solid rgba(241, 237, 233, 0.2);
  color: #9a9690;
}

.cookie-btn--decline:hover {
  border-color: rgba(241, 237, 233, 0.45);
  color: #F1EDE9;
}

.cookie-btn--accept {
  background: #F1EDE9;
  border: 1px solid transparent;
  color: #0f0e0c;
}

.cookie-btn--accept:hover {
  background: #ffffff;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
