* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  color: white;
  background: #111;
}

/* HOME */
.home-page {
  min-height: 100vh;
  background: url("images/home.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75));
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  animation: fadeUp 0.9s ease;
}

.home-content h1 {
  font-size: 52px;
  margin: 12px 0;
}

.home-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* QUIZ */
.quiz-page {
  min-height: 100vh;
  background: url("images/quiz-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.quiz-card,
.result-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  animation: fadeUp 0.7s ease;
}

.progress-wrap {
  width: 100%;
  height: 7px;
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}

#progress {
  width: 0%;
  height: 100%;
  background: #9dbb4c;
  transition: 0.4s;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
}

#question {
  font-size: 28px;
  margin-bottom: 20px;
}

#answers button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 15px 16px;
  border: none;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: #222;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  transition: 0.25s;
}

#answers button:hover {
  transform: translateY(-3px);
  background: #fff;
}

#answers button.selected {
  background: #7f9b3a;
  color: white;
}

.main-btn {
  display: inline-block;
  width: 100%;
  margin-top: 18px;
  padding: 15px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f8f32, #a5bf52);
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: 0.25s;
}

.main-btn:hover {
  transform: scale(1.03);
}

.fun-text {
  margin-top: 16px;
  font-style: italic;
  opacity: 0.9;
}

/* RESULT */
.result-page {
  min-height: 100vh;
  background: url("images/home.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.result-card {
  max-width: 950px;
  color: white;
}

.result-card h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.personality-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  margin: 15px 0 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

#description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 220px;
  text-decoration: none;
  color: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transition: 0.3s;
}

.tour-card:hover {
  transform: translateY(-8px);
}

.tour-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: 0.4s;
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.tour-content {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.badge {
  display: inline-block;
  background: #f6c948;
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}

.tour-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.tour-content span {
  font-size: 14px;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .home-content h1 {
    font-size: 36px;
  }

  .home-content p {
    font-size: 16px;
  }

  .quiz-card,
  .result-card {
    padding: 22px;
    border-radius: 22px;
  }

  #question {
    font-size: 22px;
  }

  .personality-img {
    height: 250px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-card {
    min-height: 230px;
  }
  

/* =====================================================
   DESKTOP + TABLET + MOBILE BACKGROUND IMAGES
   HOME PAGE + QUIZ PAGE + RESULT PAGE
   Copy alles direk in jou style.css
===================================================== */

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Georgia, serif;
  background:#111;
  color:white;
}

/* =====================================================
   HOME PAGE
===================================================== */

.home-page{
  min-height:100vh;
  background:url("images/home.jpg") center center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.home-content{
  position:relative;
  z-index:2;
  max-width:700px;
  text-align:center;
}

.home-content h1{
  font-size:48px;
  margin-bottom:15px;
}

.home-content p{
  font-size:18px;
  line-height:1.6;
}

/* =====================================================
   QUIZ PAGE
===================================================== */

.quiz-page{
  min-height:100vh;
  background:url("images/quiz-desktop.jpg") center center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}

/* =====================================================
   RESULT PAGE
===================================================== */

.result-page{
  min-height:100vh;
  background:url("images/result-desktop.jpg") center center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}

/* =====================================================
   DARK OVERLAY
===================================================== */

.dark-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.75)
  );
}

/* =====================================================
   GLASS CARD
===================================================== */

.quiz-card,
.result-card{
  position:relative;
  z-index:2;
  width:100%;
  max-width:800px;
  background:rgba(255,255,255,0.14);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.22);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

/* =====================================================
   BUTTONS
===================================================== */

.main-btn{
  display:inline-block;
  width:100%;
  padding:15px 20px;
  margin-top:20px;
  border:none;
  border-radius:999px;
  background:linear-gradient(
    135deg,
    #6f8f32,
    #a5bf52
  );
  color:white;
  text-decoration:none;
  font-weight:bold;
  text-align:center;
  cursor:pointer;
  transition:0.3s;
}

.main-btn:hover{
  transform:scale(1.03);
}

/* =====================================================
   QUIZ ANSWERS
===================================================== */

#answers button{
  display:block;
  width:100%;
  margin:10px 0;
  padding:15px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,0.92);
  color:#222;
  text-align:left;
  font-size:15px;
  cursor:pointer;
  transition:0.25s;
}

#answers button:hover{
  transform:translateY(-3px);
}

#answers button.selected{
  background:#7f9b3a;
  color:white;
}

/* =====================================================
   PERSONALITY IMAGE
===================================================== */

.personality-img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:22px;
  margin:20px 0;
  box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

/* =====================================================
   TOUR CARDS
===================================================== */

.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:20px;
}

.tour-card{
  position:relative;
  min-height:220px;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:white;
  box-shadow:0 15px 35px rgba(0,0,0,0.35);
  transition:0.3s;
}

.tour-card:hover{
  transform:translateY(-8px);
}

.tour-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tour-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    transparent,
    rgba(0,0,0,0.85)
  );
}

.tour-content{
  position:absolute;
  z-index:2;
  left:15px;
  right:15px;
  bottom:15px;
}

.badge{
  display:inline-block;
  background:#f6c948;
  color:#111;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:bold;
  margin-bottom:8px;
}

/* =====================================================
   TABLET VERSION
===================================================== */

@media (max-width:1024px){

  .home-page{
    background:url("images/tablet.jpg") center center/cover no-repeat;
  }

  .quiz-page{
    background:url("images/quiz-tablet.jpg") center center/cover no-repeat;
  }

  .result-page{
    background:url("images/result-tablet.jpg") center center/cover no-repeat;
  }

  .dark-overlay{
    background:rgba(0,0,0,0.58);
  }

  .tour-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .home-content h1{
    font-size:40px;
  }
}

/* =====================================================
   MOBILE VERSION
===================================================== */

@media (max-width:768px){

  .home-page{
    background:url("images/home-mobile.jpg") center center/cover no-repeat;
  }

  .quiz-page{
    background:url("images/quiz-mobile.jpg") center center/cover no-repeat;
  }

  .result-page{
    background:url("images/result-mobile.jpg") center center/cover no-repeat;
  }

  .dark-overlay{
    background:rgba(0,0,0,0.68);
  }

  .home-content h1{
    font-size:30px;
  }

  .home-content p{
    font-size:16px;
  }

  .quiz-card,
  .result-card{
    padding:22px;
    border-radius:22px;
  }

  .personality-img{
    height:250px;
  }

  .tour-grid{
    grid-template-columns:1fr;
  }

  .tour-card{
    min-height:230px;
  }
}

}

/* =========================================
GROTER RESULTAAT FOTO BLOKKIES
Sit hierdie in jou style.css
========================================= */

.tour-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:25px;
}

.tour-card{
  position:relative;
  min-height:320px;   /* was kleiner – nou groter */
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  color:white;
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  transition:0.3s;
}

.tour-card:hover{
  transform:translateY(-8px);
}

.tour-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tour-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    transparent,
    rgba(0,0,0,0.88)
  );
}

.tour-content{
  position:absolute;
  z-index:2;
  left:18px;
  right:18px;
  bottom:18px;
}

.tour-content h4{
  font-size:22px;
  margin-bottom:8px;
}

.tour-content span{
  font-size:15px;
}

.badge{
  display:inline-block;
  background:#f6c948;
  color:#111;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:bold;
  margin-bottom:10px;
}

/* TABLET */
@media (max-width:1024px){
  .tour-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .tour-card{
    min-height:300px;
  }
}

/* MOBILE */
@media (max-width:768px){
  .tour-grid{
    grid-template-columns:1fr;
  }

  .tour-card{
    min-height:280px;
  }
}