.main-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-logo-img {
    opacity: 0;
    width: 180px;
    max-width: 80vw;
    margin-top: 64px;
    margin-bottom: 32px;

    display: block;
    margin-left: auto;
    margin-right: auto;
    animation:  fade_move_down 2s ease-in-out 0s forwards;
}

.RC24Intro {
    color: #fff;
    font-size: 5rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Desyrel', cursive;
    opacity: 0;
    animation:  fade_move_down 2s ease-in-out 0.33s forwards;
}

.slogan {
    opacity: 0;
    font-family: "Reklame Script Medium", Verdana, sans-serif;
    color: #888;
    font-size: 4rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 16px;
    animation:  fade_move_down 2s ease-in-out 0.66s forwards;
}
.down-arrow-wrapper {
  opacity: 0;
  animation: fade_move_down 2s ease-in-out 1s forwards;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.down-arrow {
    cursor: pointer;
  width: 60px;
  height: 40px;
  transition: filter 0.6s ease, transform 0.3s ease;
  filter: brightness(80%);
}

/* Hover effect: go grey + slight movement */
.down-arrow:hover {
  filter: brightness(60%);
  transform: translateY(5px);
}

.body-container{
    background: rgb(40, 40, 44);
    width: 100%;
    margin: 0px auto;
    box-sizing: border-box;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghost-btn {
 background: rgba(0, 0, 0, 0.3);
   border: 3px solid rgba(0, 0, 0, 0); 
  border-radius: 0;         
  font: inherit;
  cursor: pointer;
  line-height: 1;
  color: #f0b347;
  padding: 20px 10px;
  font-weight: bold;
  transition-duration: 0.4s;
}

.ghost-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(0, 0, 0, 0.7);  
}

.ghost-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* parallax container section */
.parallax-section {
  position: relative;
  height: 500px; /* desired fixed height */
  overflow: hidden; /* crop any image overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%; /* taller than section */
  object-fit: cover;
  z-index: 0;
  transform: translateY(0);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 30, 39, 0.6); /* Dark blue/black filter */
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 300px;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  z-index: 1;
}

.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw; /* Stretch from far left */
  height: 100%;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5); /* Match the container bg */
  z-index: -1;
}

.info-center,
.info-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 25%;
    box-sizing: border-box;
    text-align: center;
    background: none; 
}


@media (max-width: 1000px), , (orientation: portrait) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .parallax-section{
    height: 700px;
  }

  .info-center, .info-right {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
    .contact-container{
        width: 80%;
        padding-top: 0px;
        padding-bottom: 0px;
        
    }
  .contact-container::before {
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
  }
}


/* about section */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    padding: 40px;
}

.about-text {
    max-width: 400px;
    width: 50%;
}

.image-stack {
    position: relative;
    width: 300px;
    height: 300px;
    margin-right: 75px;
}

.image-stack img {
    position: absolute;
    width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
}

.image-stack img:nth-child(1) {
    z-index: 1;
    left: 10%;
}

.image-stack img:nth-child(2) {
    top: 70px;
    left: -25%;
    z-index: 2;
}

.image-stack img:nth-child(3) {
    top: 140px;
    left: 25%;
    z-index: 3;
}

.image-stack img.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px), (orientation: portrait) {
    .about-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 0;
    }

    .image-stack {
    margin-right: 0px;
    }

    .about-text {
    width: 80%;
    }
}