/* =========================================================
   style.css – reklamiraj.si
   Vizualni stil: Heliora (zlata, kremasta, Cormorant + Inter)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
   CSS SPREMENLJIVKE
   ========================================================= */
:root {
  --gold:        #c8973a;
  --gold-light:  #e8b96a;
  --gold-dark:   #a07828;
  --cream:       #faf8f4;
  --cream-dark:  #f0ece4;
  --text:        #1c1a17;
  --text-muted:  #6b6560;
  --text-light:  #9e9890;
  --dark:        #0f0e0c;
  --dark-mid:    #1a1815;
  --border:      #e4dfd6;
  --white:       #ffffff;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --transition:  0.3s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* =========================================================
   TIPOGRAFIJA
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 48px; text-align: center; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 14px; }

p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

.label-gold {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 100px 0; }
.section-light { background: var(--cream-dark); }

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo img { height: 44px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}

.desktop-nav a:hover { color: var(--gold); }

.desktop-nav a.cta {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
}

.desktop-nav a.cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* =========================================================
   HAMBURGER
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.mobile-menu a {
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 100px 5%;
  background: var(--cream);
  min-height: 88vh;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-left p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-right img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* =========================================================
   GUMBI
   ========================================================= */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,58,0.3);
  color: var(--white);
}

/* =========================================================
   PREDNOSTI (zakaj)
   ========================================================= */
.zakaj-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.zakaj-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.zakaj-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: left;
  margin: 0 auto 48px;
  max-width: 860px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.zakaj-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: background var(--transition);
}

.zakaj-list li:hover { background: var(--cream); }
.zakaj-list li:nth-child(even) { border-right: none; }
.zakaj-list li:nth-last-child(-n+2) { border-bottom: none; }

.zakaj-list li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.zakaj-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-family: var(--font-sans);
}

.zakaj-list li span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.zakaj-img-wrap {
  text-align: center;
  margin: 48px auto 0;
}

.zakaj-img-wrap img {
  max-width: 60%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   VRSTE OSVEŽILCEV
   ========================================================= */
.osv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.osv-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.osv-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.osv-item img {
  width: 75%;
  max-width: 300px;
  margin: 0 auto 28px;
  border-radius: var(--radius);
}

.osv-item h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.osv-item p { margin-bottom: 14px; }

.osv-item .bullet {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.osv-item .bullet li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.osv-item .bullet li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.osv-item .bullet li:last-child { border-bottom: none; }

/* =========================================================
   POSTOPEK
   ========================================================= */
#postopek { background: var(--cream-dark); }

.steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  padding: 20px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  transition: background var(--transition);
}

.step:last-child { border-bottom: none; }
.step:hover { background: var(--cream); }

.step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.step-text {
  font-weight: 500;
  color: var(--text);
}

.step-check {
  text-align: center;
  font-size: 18px;
  opacity: 0.6;
}

/* =========================================================
   KARTICE (ponudba)
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img { transform: scale(1.04); }

.card-body {
  padding: 22px 24px 26px;
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.93rem;
}

/* =========================================================
   KONTAKTNI OBRAZEC
   ========================================================= */
.cta-big {
  padding: 100px 20px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.cta-big h2 {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.contact-form {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  padding: 0;
  background: transparent;
  border: none;
}

.contact-form .btn-primary { align-self: center; margin-top: 8px; }

/* =========================================================
   FAQ
   ========================================================= */
#faq { background: var(--cream); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: var(--cream); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  transition: all var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-col p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}

/* =========================================================
   ICON KARTICE (proces – brez slik)
   ========================================================= */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.icon-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.icon-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 5%;
    text-align: center;
  }

  .hero-left p { max-width: 100%; }

  .hero-right img {
    max-width: 90%;
    margin: 0 auto;
  }

  .zakaj-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .zakaj-list li { border-right: none !important; }
  .zakaj-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .zakaj-list li:last-child { border-bottom: none; }

  .zakaj-img-wrap img { max-width: 90%; }

  .osv-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col a { display: inline-block; margin: 0 8px 8px; }
  .footer-logo { margin: 0 auto 16px; }
  h2 { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 2.2rem; }
  .cta-big { padding: 64px 20px; }
}
