
/* ===================== BASE ===================== */

html {
  background-color: #FEEBC9;
}

body {
  margin: 0;
  font-family: 'IBM Plex Serif', serif;
}

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

/* ===================== TOPBAR ===================== */

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  text-align: center;
  z-index: 1000;
  font-weight: 400;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.topbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.topbar nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; 
  gap: 2rem;
}

.topbar li {
  font-size: 1.25rem;
}

.topbar li a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.topbar.scrolled li a {
  color: #FEEBC9;
}

.topbar li a:hover {
color:rgba(0, 0, 0, 0.6)
}

.topbar.scrolled li a:hover {
  color: #fcd7a8;
}

.mobile-menu {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  display: none; 
}

.burger {
  font-size: 2rem;
  border: 1px solid grey;
  background-color: #CDC9A2;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}


.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #CDC9A2;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1200;
}


.mobile-nav.open {
  transform: translateX(0);
}


.close-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
  margin-bottom: 2rem;
}


.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
}

/* ===================== HERO SECTION ===================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.center-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.logo {
  max-width: 200px;
  height: auto;
  display: block;
}

/* ========== HERO BUTTON ========== */

.center-button {
  z-index: 2;
}

.center-button button {
  width: 300px;
  height: 60px;
  font-family: 'IBM Plex Serif', serif;
  font-size: 20pt;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  background-color: #CDC9A2;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.center-button button a {
text-decoration: none;
color: black;
}

.center-button button:hover {
  background-color: #e4e1cf;
}

/* ===================== ABOUT ===================== */

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vw;
  background-color: #FEEBC9;
  max-height: 50vh;
}

.about-text {
  width: 50%;
  padding-right: 3vw;
}

.about-text h2 {
  font-weight: normal;
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}

.about-image {
  padding-top: 12vh;
  width: 50%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* ===================== SURFING WITH US ===================== */

.surfing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #CDC9A2;
  padding: 5vw;
  min-height: 50vh;
}

.surfing-image {
  width: 50%;
  padding-right: 3vw;
}

.surfing-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.surfing-text {
  width: 50%;
}

.surfing-text h2 {
  font-weight: normal;
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.surfing-text p {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}

.surfing-cta-wrapper {
  position: relative;
  margin: 30px auto 0;
  width: fit-content;
}

.package-button {
  background-color: #FEEBC9;
  font-size: 24px;
  padding: 16px 100px;
  border-radius: 60px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.package-button:hover {
  background-color: #e4e1cf;
}

.learn-more-img {
  position: absolute;
  left: -210px;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
}

/* ===================== LOCATION & ACCOMMODATION ===================== */

.location-accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  padding: 5vw 0 5vw 5vw;
  background-color: #FEEBC9;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.location-text, .accommodation-text {
  text-align: center;
}

.location-text h2,
.accommodation-text h2 {
   font-weight: normal;
  font-size: 40px;
  margin-bottom: 15px;

}

.location-text p,
.accommodation-text p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-right: 3vw;
}

.info-button {
  background-color: #CDC9A2;
  font-size: 24px;
  padding: 16px 100px;
  border-radius: 60px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.info-button:hover {
  background-color: #e4e1cf;
}

.info-button-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.take_a_look_inside {
  position: absolute;
  left: -300px; 
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
  width: auto;
  object-fit: contain;
  z-index: 0;
}

/* ===================== IMPRESSIONS ===================== */

.impressions {
  background-color: #CDC9A2;
  padding: 2vw;
  text-align: center;
}

.impressions h2 {
  padding-top: 8vh;
  font-weight: normal;
  font-size: 40px;
  margin-bottom: 40px;
}

.impressions-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2vw;
}

.impressions-gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.impressions-gallery img:hover {
  transform: scale(1.03);
}

/* ===================== INSTAGRAM FOLLOW ===================== */
.instagram-follow {
  display: flex;               
  justify-content: center;     
  align-items: center;         
  width: 100%;                 
  padding: 1rem 0 3rem 0;             
  background-color: #CDC9A2;
  position: relative;
}

.insta-wrapper {
  position: relative;          
  display: inline-block;       
}

.insta-logo {
  display: block;
  max-width: 75px;            
  height: auto;
}

.insta-pointer {
  position: absolute;
  left: -150%;                  
  transform: translate(-50%, -50%);
  max-width: 325px;
  height: auto;
}

/* ===================== TRIPADVISOR ===================== */
.tripadvisor {
  display: flex;               
  justify-content: center;     
  align-items: center;         
  width: 100%;                 
  padding: 2rem 0;             
  background-color: #CDC9A2;
  position: relative;
}

.tripadvisor-link {
  position: relative;          
  display: inline-block;       
}

.tripadvisor-logo {
  display: block;
  max-width: 80px;            
  height: auto;
}

.tripadvisor-pointer {
  position: absolute;      
  left: 250%;                 
  transform: translate(-50%, -50%); 
  max-width: 250px;
  height: auto;
}

/* ===================== CONTACT FORM ===================== */

.contact {
  padding: 5vw 0;
  background-color: #CDC9A2;
  text-align: center;
}

.contact h2 {
  font-weight: normal;
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 66vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 20px;
  font-family: 'IBM Plex Serif', sans-serif;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.contact-form button {
  background-color: #FEEBC9;
  font-family: 'IBM Plex Serif',sans-serif;
  font-size: 24px;
  padding: 16px 100px;
  border-radius: 60px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-style: none;
}

.contact-form button:hover {
  background-color: #e4e1cf;
}

/* ===================== FOOTER ===================== */

footer {
 
  background-color: #000;
  text-align: center;
  padding: 2rem 0;
}

footer p {
 color: #CDC9A2; 
 font-family:'IBM Plex Serif', sans-serif ;
}

footer img {
height: 150px;
}

/* ===================== MOBILE ===================== */
@media (max-width: 1024px) {

  .topbar {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero-Logo + Button */
  .center-content {
    top: 35%;
    width: 90%;
  }

  .center-button button {
    width: 200px;
    font-size: 20pt;
  }

  /* About Us */
  .about {
    flex-direction: column;
    max-height: none;
    padding: 8vw 5vw;
  }
  .about-text {
    width: 100% ;
    padding-top: 0;
  }

 .about-image {
    width: 100%;
    padding: 0;
  }

  /* Surfing with Us */
  .surfing {
    flex-direction: column-reverse;
    padding: 8vw 5vw;
  }

  .surfing-text, .surfing-image {
    width: 100%;
    padding: 2vh;
  }

  .learn-more-img {
    display: none;
  }

.package-button {
  text-align: center;
}


  /* Location + Accommodation */
  .location-accommodation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 8vw 5vw;
  }

 .accommodation-image {
  display: none;
}
  .info-button {
    margin: 0 auto;
    text-align: center;
  }

  .info-button-wrapper img {
    display: none;
  }

  /* Impressions */
  .impressions-gallery {
    grid-template-columns: 1fr;
  }
  
  .impressions h2 {
    padding-top: 4vh;
  }

  /* Instagram Follow */
  .insta-wrapper {
    padding-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .instagram-follow {
  padding: 0px;
  }

  .insta-pointer {
    display: none;
  }

  .tripadvisor-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tripadvisor-pointer {
    display: none;
  }


  /* Contact */
  .contact-form {
    width: 90%;
  }
}
/* ===== Landscape Mobile: volle Menü‑Scrollbarkeit ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .mobile-nav {
    max-height: 100vh;
    overflow-y: auto;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}