@charset "UTF-8";
/**************************
RESET STYLE

***************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
}

/**************************
ROOT

***************************/
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
  background: rgb(255, 255, 255);
  color: #f8fafc;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow: x-hidden;
}

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

ul {
  list-style: none;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 1600px;
}

@media (min-width: 300px) {
  .container {
    width: 100%;
    padding: 0 0%;
  }
}
@media (min-width: 576px) {
  .container {
    width: 100%;
    padding: 0 3%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
    padding: 0 3%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 3%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
    padding: 0%;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
    padding: 0%;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0%;
  }
}
/**************************
VARIJABLE (HEADER / HERO)

***************************/
/**************************
BRAND GRADIENT TEXT

***************************/
.brand-gradient {
  background-image: linear-gradient(90deg, #16adb5, #3c3896);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/**************************
HEADER

***************************/
.header {
  background-color: #e11c25;
  width: 100%;
  padding: 1%;
}
.header .container {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.header .logo {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

@media (min-width: 300px) {
  .header .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .header .logo {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .header .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header .logo {
    font-size: 26px;
  }
}
/**************************
HERO

***************************/
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/retro 2.jpg");
  background-size: cover;
  background-position: center;
  background-color: #3b3b55;
  color: #ffffff;
  width: 100%;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .hero-content {
  max-width: 640px;
}
.hero .hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.95;
}
.hero .hero-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (min-width: 300px) {
  .hero {
    min-height: 480px;
  }
  .hero .hero-title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 560px;
  }
  .hero .hero-title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .hero {
    min-height: 620px;
  }
  .hero .hero-title {
    font-size: 44px;
  }
}
/**************************
TRUST BAR

***************************/
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.trust-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #ffffff;
}

@media (min-width: 768px) {
  .trust-bar .container {
    gap: 32px 48px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .trust-item {
    font-size: 14px;
  }
}
/**************************
ABOUT / DISCOVER SERBIA

***************************/
.about {
  background-color: #FAFAFA;
  padding: 2% 0;
  margin: 5% auto;
}
.about .about-eyebrow {
  color: #e11c25;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.about .about-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
}
.about .about-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  text-align: center;
  width: 100%;
  margin: 1rem auto;
  padding: 0 2%;
}
@media (min-width: 768px) {
  .about .about-lead {
    width: 60%;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 5% 3%;
}

.about-card {
  background-color: #fff;
  border: 0.5px solid #eee;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  will-change: transform;
}
.about-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.about-card ul {
  list-style: none;
}
.about-card li {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.about-card li::before {
  content: "✓";
  color: #e11c25;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.about-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(225, 28, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-icon svg {
  width: 22px;
  height: 22px;
  color: #e11c25;
}

.about-footer {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 28px;
  margin-top: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .about {
    padding: 72px 0;
  }
  .about .about-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .about .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .about .about-title {
    font-size: 34px;
  }
}
/**************************
TOURS

***************************/
.tours {
  background-color: #fff;
  padding: 48px 0;
}
.tours .tours-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 32px;
}

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tour-card {
  perspective: 1200px;
  height: 40vh;
}
@media (max-width: 768px) {
  .tour-card {
    height: 45vh;
  }
}

.tour-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.tour-card:hover .tour-card-inner {
  transform: rotateY(180deg);
}

.tour-card-front,
.tour-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.tour-image-wrap {
  position: relative;
  width: 100%;
  height: 25vh;
  overflow: hidden;
}
.tour-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e11c25;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
}

.tour-content {
  padding: 18px 20px 22px;
}

.tour-title {
  font-size: 16px;
  font-weight: 700;
  color: #e11c25;
  line-height: 1.35;
  margin-bottom: 10px;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}
.tour-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.tour-card-back {
  transform: rotateY(180deg);
  background-color: #e11c25;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
}

.tour-back-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tour-back-info {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 4px;
}

.tour-back-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.tour-back-list {
  list-style: none;
}
.tour-back-list li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  margin-bottom: 5px;
}
.tour-back-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.tour-back-btn {
  margin-top: 18px;
  align-self: flex-start;
  background-color: #ffffff;
  color: #e11c25;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.tour-back-btn:hover {
  background-color: #f5f5f5;
  transform: scale(1.04);
}

.tour-info {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

@media (min-width: 768px) {
  .tours {
    padding: 64px 0;
  }
  .tours .tours-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .tours .tours-title {
    font-size: 32px;
  }
}