body {
  color: var(--color-primary);
  background-color: var(--color-secondary);
  width: 100%;
  min-height: 100vh;
  margin: 0;              /* remove default browser margin */
  padding: 0;             /* remove padding that was shrinking your site */
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: var(--font-primary);
}


header{
height: 80px;
 position: relative;
height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
    position: relative;
    z-index: 10;
}




.logo img {

height:70px;
border-radius: 50px;
margin-left: 30px;
}

.nav-link{
   
 margin-left: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 50px;
}

.nav-link ul{
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
    padding: 0;
}

.nav-link a{
color: black;
text-decoration: none;
font-weight: 500;
font-size: 18px;
transition: color 0.3s ease;

}

.nav-link a:hover{
  color: black;
  text-decoration: underline;
}

.logo,
.nav-link,
.nav-right {
  position: relative;
  z-index: 2;
  color: black;
}

a.current {
  font-weight: bold;
  color: black; 

  font-size: 1.3rem;
}

.become-member {
  display: inline-block;
  background-color: #3FA752;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.become-member:hover {
     background-color: #339e4a;

}


/*new container*/

.membership{
background-image: url("picture/luca-albrecht-2.jpg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center 30%;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;

}

.cover-membership{
   position: absolute;
  display: flex;
  justify-content: flex-start;
flex-direction: column;
text-align: left ;
  left: 20px;
  padding: 0;
 margin: 0 ;
  margin-bottom: 0px;
 
}

.cover-membership {
position: absolute;
    z-index: 1;
    color: white;
    width: 100%;
    bottom: 0px;
      padding: 1.5rem 3rem 1rem; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}


.cover-membership h1 {
  font-size: 70px;
font-weight: bold;
color: white;
  margin: 5px;
   margin: 0;          
  padding-left: 5px;
  line-height: 1.2;   
}

.cover-membership h3 {
   font-weight: bold;
     font-size: 23px;
color: white;
  margin: 5px 0 0 0;  /* only small top margin to separate from h1 */
  line-height: 1.4;   /* reduce spacing */
  max-width: 700px;
}

/*new container*/

.membership-section {
  display: flex;                 /* horizontal layout */
  gap: 40px;                     /* space between left and right */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;               /* stack on small screens */
}

.membership-left {
 flex: 2;                       /* bigger block */
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  display: flex;                  /* make it a flex container */
  flex-direction: column;         /* stack h3 and p vertically */
  justify-content: center; 
}

.membership-right {
  flex: 1;                       /* smaller block */
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
}

.membership-left h3,
.membership-right h3 {
    align-items: center;
      font-size: 23px;
    font-weight: 500;
    line-height: 30px;
}

.membership-right ul {
  font-size: 18px;
  line-height: 1.5;
 
}

.membership-right ul {
  padding-left: 20px;           /* space for bullets */
}

.membership-right li {
  margin-bottom: 10px;
}


/*new container*/
.membership-container{
    text-align: center;
    font-family: sans-serif;
}



/*new container*/
.membership-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px;
}

.card {
flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 10px;
  display: flex;               /* Make card a flex container */
  flex-direction: column;      /* Stack elements vertically */
  justify-content: space-between; /* Spread top, middle, bottom */
  text-align: center;
  transition: box-shadow 0.3s ease;
  width: 300px;           /* Ensure cards don't get too small */
  height: 450px;
}


.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wrapper-icons-price{
 display: inline-block;
visibility: visible;
position: static;
left: auto;
top: auto;
width: 264.4px;
height: 20px;
z-index: auto;
margin: 0px;
padding: 0px 0px 16px;
border: 0px none rgb(49, 49, 49);
color: rgb(49, 49, 49);
font-size: 16px;
font-weight: 400;
text-align: center;
text-decoration: rgb(49, 49, 49);
background-color: rgba(0, 0, 0, 0);
}

.wrapper-icons-price {
  display: flex;
  justify-content: center;
  align-items:center;
}

.icon-individual {
  width: 70px;
  height: auto;
}

.icon-guest{
width: 70px;
height: auto; 
}

.icon-family{
width: 70px;
height: auto;
}


.card h2 {
  margin-bottom: 10px;
}

.card p {
  color: #555;
  margin-bottom: auto;  /* Pushes price + button down */
}


.select-button {
  background-color: #fff;
  color: rgb(12, 7, 7);
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s  linear, color 0.2s linear;
    margin-top: auto; /* Ensures button stays at bottom */
    border-radius: 15px;
     border: 1px solid #ddd;

}

.select-button:hover {
  background-color:#EEEEEE;
}

.select-button:active {
  background-color: #28a745; /* green when clicked */
  color: white;
}


/* Footer container */
.footer {
  background-color: #4d908e; /* teal-like background */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  margin-top: 10px
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #FFD93D; /* highlight yellow */
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 40px;
  border-radius: 50%;
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {

  /* Header → horizontal, items centered */
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    height: 70px;
  }

  .logo img {
    height: 50px;
    margin-left: 10px;
  }

  .nav-link {
    gap: 15px;
    padding-right: 10px;
  }

  .nav-link ul {
    gap: 10px;
  }

  .nav-link a {
    font-size: 16px;
  }

  a.current {
    font-size: 1rem;
  }

  .become-member {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* Cover section → adapt image */
  .membership {
    height: 250px; /* smaller for mobile */
    background-position: center center;
    background-size: cover;
  }

  .cover-membership h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .cover-membership h3 {
    font-size: 16px;
    max-width: 90%;
    line-height: 1.4;
  }

  /* Membership section → stack left/right but smaller */
  .membership-section {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
  }

  .membership-left,
  .membership-right {
    width: 100%;
    padding: 15px;
  }

  .membership-left h3,
  .membership-right h3 {
    font-size: 18px;
  }

  .membership-right ul {
    font-size: 14px;
    padding-left: 20px;
  }

  /* Membership cards → same size, stacked with proper spacing */
  .membership-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .card {
    width: 90%;
    max-width: 300px;
    height: auto;
    padding: 15px;
    text-align: center;
    box-sizing: border-box;
  }

  .card img {
    width: 70px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
  }

  .card h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .card p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .card .select-button {
    width: 80%;
    max-width: 200px;
    margin: 10px auto 0 auto;
    padding: 8px 0;
    font-size: 14px;
  }

  /* Footer → row but smaller, responsive */
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 0 10px;
  }

  .footer-column {
    flex: 1 1 45%; /* two columns per row */
    text-align: center;
    margin: 5px 0;
  }

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 10px 0 0 0;
  }

  /* Optional: smaller texts in footer */
  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column p,
  .footer-column li {
    font-size: 13px;
  }

  /* Adjust map image if needed */
  .info-map img {
    width: 100%;
    height: auto;
  }
}
