@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Quicksand:wght@400;700&display=swap');
:root {
  --green-main: #3D8D7A;
  --green-light: #B3D8A8;
  --green-pale: #A3D1C6;
  --background: #FBFFE4;
  --text-dark: #222;
  --text-light: #fff;
}
body {
  background: var(--background);
  color: var(--text-dark);
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 1.05rem;
}
a {
  color: var(--green-main);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--green-light);
}
.button, .btn {
  background: var(--green-main);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(61,141,122,0.10);
  animation: fade-in 0.7s cubic-bezier(.4,0,.2,1);
}
.button:hover, .btn:hover {
  background: var(--green-light);
  color: var(--text-dark);
  transform: scale(1.04);
}
nav {
  background: linear-gradient(135deg, var(--background) 70%, var(--green-pale) 100%);
  border-bottom: 2.5px solid var(--green-main);
  box-shadow: 0 2px 12px 0 rgba(61,141,122,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  min-height: 64px;
  animation: slide-down 0.7s cubic-bezier(.4,0,.2,1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  border-radius: 2px;
  background: transparent;
  animation: fade-in 1s cubic-bezier(.4,0,.2,1);
}
.nav-title {
  color: var(--green-main);
  font-family: 'Poppins', 'Quicksand', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 16px;
}
.nav-link {
  color: var(--green-main);
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  animation: fade-in 1s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover, .nav-link.active {
  background: var(--green-light);
  color: var(--green-main);
  transform: scale(1.06);
}
footer {
  background: linear-gradient(90deg, var(--green-pale) 60%, var(--green-light) 100%);
  border-top: 2.5px solid var(--green-main);
  text-align: center;
  padding: 32px 0 16px 0;
  margin-top: 48px;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
footer .footer-logo {
  display: block;
  margin: 0 auto 18px auto;
  height: 88px;
  width: auto;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
footer .footer-copy {
  color: var(--green-main);
  font-family: 'Poppins', 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  animation: fade-in 1.1s cubic-bezier(.4,0,.2,1);
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  animation: fade-in 1.1s cubic-bezier(.4,0,.2,1);
}
.hero-text {
  flex: 1 1 320px;
  text-align: center;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-main);
  letter-spacing: 1.5px;
  font-family: 'Poppins', 'Quicksand', Arial, sans-serif;
  animation: slide-up 0.8s cubic-bezier(.4,0,.2,1);
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Quicksand', Arial, sans-serif;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-lead {
  font-size: 1.13rem;
  color: var(--text-dark);
  margin: 0 auto 24px auto;
  max-width: 480px;
  line-height: 1.6;
  animation: fade-in 1.3s cubic-bezier(.4,0,.2,1);
}
.hero-img {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(61,141,122,0.13);
  object-fit: cover;
  max-width: 350px;
  width: 100%;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
.gallery-title {
  font-size: 1.4rem;
  color: var(--green-main);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 32px;
  animation: fade-in 1.1s cubic-bezier(.4,0,.2,1);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  justify-content: center;
}
.gallery-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(61,141,122,0.10);
  overflow: hidden;
  width: 320px;
  max-width: 100%;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
.gallery-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(61,141,122,0.18);
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
  animation: fade-in 1.2s cubic-bezier(.4,0,.2,1);
}
.gallery-img:hover {
  box-shadow: 0 8px 32px 0 rgba(61,141,122,0.18);
  transform: scale(1.04);
}
.gallery-caption {
  font-size: 1.08rem;
  color: var(--green-main);
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 12px 0 16px 0;
  animation: fade-in 1.3s cubic-bezier(.4,0,.2,1);
}
/* Modal animasyonu */
#modal[style*="display: flex"] > div {
  animation: modal-pop 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes modal-pop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
/* Hamburger Menü (Mobil) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    width: 38px;
    height: 38px;
  }
}
.hamburger span {
  height: 4px;
  width: 100%;
  background: var(--green-main);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 220px;
    background: #fff;
    box-shadow: -2px 0 16px 0 rgba(61,141,122,0.10);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px 24px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    display: flex;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  nav {
    position: relative;
  }
}
.hamburger.active span:nth-child(1) {
  opacity: 0;
  transform: none;
}
.hamburger.active span:nth-child(2) {
  opacity: 1;
  transform: none;
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
  transform: none;
}

/* Modal açıkken body scroll kapalı */
body.modal-open {
  overflow: hidden !important;
  touch-action: none;
}
@media (max-width: 900px) {
  .hero-title { font-size: 2rem; }
  .hero-img img { max-width: 220px; }
  .gallery-card { width: 220px; }
  .gallery-img { height: 140px; }
}
@media (max-width: 600px) {
  .container { padding: 12px 4px; }
  .hero-title { font-size: 1.4rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-img img { max-width: 140px; }
  .gallery-title { font-size: 1.08rem; }
  .gallery-card { width: 98vw; }
  .gallery-img { height: 90px; }
} 
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    z-index: 1100;
    width: 38px;
    height: 38px;
  }
  .gallery-img {
    height: 200px !important;
    max-width: 100vw;
    object-fit: cover;
  }
} 
@media (max-width: 900px) {
  .nav-logo img {
    height: 48px;
  }
  footer .footer-logo {
    height: 58px;
  }
} 