/* Reset and base setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: "Inter", sans-serif;
    background-color: white;
    color: black;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    padding: 0 0rem;
  }
  
  /* Header image with names and background symbol */
  .header {
    width: 100%;
    /* padding-top: 2rem;
    padding-bottom: 1rem; */
    padding: 3rem 4rem 2rem 4rem; 
  }
  
  .names-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Adjust as needed for better scaling */
    margin: 0 auto;
    display: block;
  }
  
  /* Info section */
  .info {
    margin-bottom: 1.5rem;
  }

  .info2 {
    padding: 3rem 3rem 1rem 3rem; 
  }
  
  .date {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
  }

  .time {
    font-size: 1.1rem;
    padding-bottom: 1.5rem;
  }

  .text {
    font-size: 1rem;
    padding-bottom: 1.5rem;
  }
  
  .location {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .location a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent; /* Optional: removes blue tap flash on mobile */
}

/* Mobile browsers can be aggressive, so make sure these are covered too */
.location a:link,
.location a:visited,
.location a:hover,
.location a:active {
  text-decoration: none !important;
  color: inherit;
}
  
/* Main image */
.main-image {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}

/* Main image */
.minor-image {
  width: 100%;
  height: auto;
  margin: 1rem 0 3rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  font-size: 1.1rem;
  color: #333;
}



.ankieta {
  /* margin-bottom: 1.5rem; */
  margin: 0.5rem 2rem 1.5rem 2rem;
}

.confirm {
  font-size: 1.1rem;
  font-weight: light;
  padding-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid black;
  border-radius: 9999px; /* Full rounded corners */
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: black;
  color: white;
}



/* FAQ Section */
.faq {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto;
  padding: 0 1.5rem;
  text-align: left;
}

.faq h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #666;
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px; /* enough for longer text */
  margin-top: 0.5rem;
}

.faq-answer-text {
  /* font-size: 1.1rem; */
  font-weight: light;
  padding-bottom: 1.5rem;
}


.faq-answer-text a {
  /* text-decoration: none; */
  color: inherit;
  /* display: flex; */
  align-items: center;
  /* gap: 0.5rem; */
  -webkit-tap-highlight-color: transparent; /* Optional: removes blue tap flash on mobile */
  font-weight: bold;
}


.info2 a {
  color: inherit;
  align-items: center;
  -webkit-tap-highlight-color: transparent; 
  font-weight: bold;
}

  
