/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff4e6; /* very light creamy peach */
    color: #333;
}

#image {
    max-width:fit-content;
    max-height:fit-content;
}

html {
  scroll-behavior: smooth;
}

/* Section separator line */
.section-separator {
  width: 80%;
  max-width: 800px;
  margin: 3rem auto;
  border: none;
  border-top: 2px dashed #e55d00;
  opacity: 1;
}

/* Header Section */
.header-split {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Left side: image with mask */
.banner-side {
  position: relative;
  width: 60%;
  height: 100%;
}

.banner-side .banner-image,
.banner-side .mask-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-side .mask-image{
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.banner-side .mask h1 {
  position: absolute;
  bottom: 10%;
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 3;
  text-align: center;
  max-width: 90%;
}

/* Right side: text */
.description-side {
  width: 40%;
  padding: 3rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.description-side h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.description-side p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

header {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* Mask Overlay */
.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    box-sizing: border-box;
}

.mask-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

/* Title inside the mask */
.mask h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 2;
    max-width: 90%;
    text-align: center;
}

@media (max-width: 768px) {
  .header-split {
    flex-direction: column;
  }

  .banner-side,
  .description-side {
    width: 100%;
    height: 50vh;
  }

  .description-side {
    padding: 1.5rem;
    height: auto;
  }
}

/* Character Section */
.character-section{
    padding: 40px 20px;
    background-color: gray;
}

.character {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.kirjan { background: darkred; }
.piet { background: orange; }
.adderachie { background: blue; }

/* Game Section */
.game-section {
    text-align: center;
    padding: 20px;
    background-color: rgb(29, 29, 29);
    color: white;
}

.game-section img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.play-button {
  display: inline-block;
  background-color: #e63946; /* nice red, fits tulip style */
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.play-button:hover,
.play-button:focus {
  background-color: #a5272a; /* darker red on hover/focus */
  outline: none;
}

/* Merchandise Section */
.merchandise {
    text-align: center;
    margin: 40px auto;
    width: 90%;
}

.merch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

.carousel-inner {
    align-items: center;
}
.carousel img {
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid #ff7f00;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #ff7f00;
    color: white;
    border-color: #ff7f00;
}

/* Remove Bootstrap's default background arrow */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Custom arrow style */
.custom-arrow {
    font-size: 2rem;
    color: #ff7f00;
    font-weight: bold;
    -webkit-user-select: none;
    user-select:none;
    pointer-events: none;
    line-height: 1;
}

.carousel-control-prev:hover .custom-arrow,
.carousel-control-next:hover .custom-arrow {
    color: white;
}


/* Footer */
footer {
    background: #ffcc00; /* Yellow tulip color */
    padding: 20px;
    text-align: center;
}

.social-icons img {
    width: 40px;
    margin: 0 10px;
}

footer a{
    color: black;
    text-decoration: none;
}

footer a:hover{
    color: darkgray;
}

footer p {
    font-size: 1.2rem;
}

