* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #F0FCFC;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #98C1D9;
  padding: 0.5rem 0;
  position: relative;
  height: 120px;
  z-index: 1000;
}

.logo {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background-color: #E4B4A5;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  cursor: pointer;
}

.list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10rem;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #98C1D9;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2000;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
 
.dropdown-menu li a {
  text-decoration: none;
  color: inherit;
}

.dropdown-menu li:hover {
  background-color: #efcabe;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu{
    display: block;
  }

  .dropdown > label::after {
    content: " ▼";
    font-size: 0.8rem;
  }
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.hamburger .bar {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

.list {
  display: flex;
  gap: 10rem;
  justify-content: center;
  align-items: center;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 2rem 1rem;
  z-index: 1500;
  overflow-y: auto;
  text-align: center;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

.mobile-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

.mobile-menu li:hover {
  background-color: #efcabe;
}

.intro {
  background-image: url('exhibition-1863344_1920-min.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.intro h1,
.intro h2,
.intro h3 {
  position: relative;
  z-index: 2;
  margin-left: 2rem;
}

.intro h1 {
  font-size: 6rem;
  color: #E4B4A5;
}

.intro h2 {
  font-size: 3rem;
  color: #FE94E7;
  margin-top: 1rem;
}

.intro h3 {
  font-size: 2rem;
  color: white;
  position: absolute;
  bottom: 5rem;
  right: 4rem;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  flex: 1;
}

.section,
.section2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.section-text,
.section-text2 {
  flex: 1;
  min-width: 300px;
}

.section-image img,
.section-image2 img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.section-image img {
  transform: scaleX(-1);
}

.list2 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  text-align: center;
}

.involve-item {
  flex: 1 1 200px;
  max-width: 300px;
}

.involve-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.donation-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.donation-text {
  flex: 1;
}

.donation-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.lenke {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
 
.lenke i {
  margin-left: 5px;
}
 
h1 {
  color: #E4B4A5;
}
 
footer h2 {
  color: #FE94E7;
}
 
footer {
  background-color: #98C1D9;
  width: 100%;
  padding: 2rem 1rem;
}
 
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
 
.footer-top h3 {
  flex: 1;
}
 
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
 
.center i {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #4267B2;
  cursor: pointer;
}
 
.center i.fa-instagram {
  color: #C13584;
  cursor: pointer;
}
 
.right:hover {
  color:#E4B4A5;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E4B4A5;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.button:hover {
  background-color: #efcabe;
}

.lenke {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    align-items: center;
  }
    
  .hamburger {
    display: flex;
  }
    
  .list {
    display: none;
    flex-direction: column;
    gap: 0;
    position: static;
    transform: none;
    width: 100%;
    padding: 1rem 0;
  }
    
  #menu-toggle:checked ~ .nav-container .list {
    display: flex;
  }
    
  .list > li {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
    
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    width: 100%;
    background-color: rgba(0,0,0,0.05);
  }
    
  .dropdown-checkbox:checked ~ .dropdown-menu {
    display: block;
  }
    
  .dropdown > .dropdown-label {
    display: block;
    width: 100%;
    cursor: pointer;
  }
    
  .dropdown > .dropdown-label::after {
    content: " ▼";
    font-size: 0.8rem;
  }
    
  #menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
    
  #menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
    opacity: 0;
  }
    
  #menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
    
  .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #98C1D9;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
  }
    
  #menu-toggle:checked ~ .nav-container {
    max-height: 1000px;
    padding: 1rem 0;
  }
    
  .intro {
    padding: 50px 20px;
    height: 60vh;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
    
  .intro h1 {
    font-size: 2.5rem;
    margin: 0;
  }
    
  .intro h2 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
    
  .intro h3 {
    position: static;
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}



















