/* Arka Sanat CSS v1.1 - 2024-07-05 */
/* CSS Variables for color palette and typography */
:root {
  --offwhite: #f8f9fa;
  --soft-gray: #e5e7eb;
  --dark-gray: #222831;
  --accent: #3baea0; /* Muted teal */
  --accent-alt: #e07a5f; /* Burnt orange */
  --text: #222831;
  --font-main: 'Montserrat', Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.6;
}

/* Header & Navbar */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(34,40,49,0.04);
  transition: box-shadow 0.3s;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.nav-links a:hover {
  color: var(--accent);
  background: var(--soft-gray);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg video,
.hero-bg img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,40,49,0.08);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  background: var(--accent-alt);
  transform: translateY(-2px) scale(1.04);
}

/* Workshops Section */
.workshops-section {
  background: #E5E7EB;
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
}
.workshops-title-link {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.2s;
}
.workshops-title-link:hover h2 {
  color: var(--accent-alt);
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Kart hover ve transform animasyonlarını kaldır */
.workshop-card {
  background: #FFFFE8;
  border-radius: 36px;
  box-shadow: 0 4px 24px rgba(34,40,49,0.10);
  overflow: hidden;
  transition: box-shadow 0.3s, background 0.2s, border 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  margin: 2.5rem 0;
  text-decoration: none;
  color: var(--dark-gray);
  width: 320px;
  max-width: 90vw;
  cursor: default; /* kartta pointer kaldırıldı */
  border: 1.5px solid #f3e9b7;
}
.workshop-card:hover {
  background: #fffde7;
  box-shadow: 0 12px 36px rgba(34,40,49,0.18);
  border-color: #ffe066;
}
.workshop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 2rem;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, filter 0.3s;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  --e-column-margin-right: 0;
  --e-column-margin-left: 0;
  box-shadow: 0 2px 12px rgba(255,224,102,0.10);
  border: 2px solid #fffde7;
  background: #fffde7;
  filter: brightness(0.96) saturate(0.96);
  cursor: pointer;
}
.workshop-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(255,224,102,0.18);
  border-color: #ffe066;
  filter: brightness(1.05) saturate(1.15);
}
.workshop-card h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.workshop-card p {
  padding: 0 0.5rem;
  font-size: 1rem;
  color: var(--dark-gray);
}
.learn-more-btn {
  margin-top: 1.2rem;
  background: var(--accent-alt);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.learn-more-btn:hover {
  background: var(--accent);
  transform: scale(1.05);
}
.workshop-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(34,40,49,0.13);
}
.workshop-card:active, .workshop-card:focus, .workshop-card:visited {
  outline: none !important;
  box-shadow: none !important;
  border-color: #f3e9b7 !important;
  background: #FFFFE8 !important;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 2rem 3rem 2rem;
  background: var(--offwhite);
  text-align: center;
}
.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,40,49,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(34,40,49,0.13);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,40,49,0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(34,40,49,0.25);
}
.lightbox .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.lightbox .close:hover {
  color: var(--accent);
}

/* About Us Section */
.about-section {
  padding: 5rem 2rem 3rem 2rem;
  background: var(--soft-gray);
  text-align: center;
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.about-img {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 350px;
}
.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,40,49,0.09);
}
.about-text {
  flex: 2 1 350px;
  min-width: 260px;
  text-align: left;
}
.about-text h3 {
  color: var(--accent-alt);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem 3rem 2rem;
  background: var(--offwhite);
  text-align: center;
}
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.contact-info {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 350px;
  text-align: left;
}
.map-embed {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(34,40,49,0.07);
}
.contact-form {
  flex: 2 1 350px;
  min-width: 260px;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(34,40,49,0.13);
  padding: 2.2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--soft-gray);
  border-radius: 10px;
  font-size: 1.08rem;
  font-family: var(--font-main);
  background: var(--offwhite);
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px var(--accent, #3baea0, #e07a5f, #e5e7eb);
}
.contact-form textarea {
  min-height: 110px;
  max-height: 220px;
}
.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.9rem 0;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  width: 100%;
  letter-spacing: 1px;
}
.contact-form button:hover {
  background: var(--accent-alt);
  transform: scale(1.03);
}
.form-message {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  color: var(--accent-alt);
  min-height: 1.2em;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 2rem;
}
.social-icons {
  margin-bottom: 1rem;
}
.social-icons a {
  color: #fff;
  margin: 0 0.7rem;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.social-icons a:hover {
  color: var(--accent);
  transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-content, .contact-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .contact-info, .contact-form {
    text-align: center;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }
  .contact-form {
    max-width: 95vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .workshops-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0;
  }
  .workshop-card {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .logo {
    font-size: 1.4rem;
  }
  .nav-links {
    gap: 1rem;
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .workshops-section,
  .gallery-section,
  .about-section,
  .contact-section {
    scroll-margin-top: 55px;
  }
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0;
  }
  .workshop-card {
    width: 100%;
    max-width: 100%;
    margin: 0.7rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .workshop-card img {
    aspect-ratio: 1 / 1;
    width: 70%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-bottom: 1rem;
  }
  .about-img, .about-text, .contact-info, .contact-form {
    min-width: 0;
    max-width: 100%;
  }
  .about-img img {
    max-width: 90vw;
  }
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .contact-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 100vw;
    padding: 0;
  }
  .contact-info, .map-embed, .contact-form {
    max-width: 95vw !important;
    width: 95vw !important;
    margin: 0 auto 1rem auto !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 6px rgba(34,40,49,0.06) !important;
  }
  .contact-info {
    min-width: 0;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    text-align: center;
    font-size: 1.05rem;
    background: var(--soft-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .contact-info p {
    margin: 0.3rem 0 0.3rem 0;
    line-height: 1.3;
    font-size: 1.05rem;
    text-align: center;
    word-break: break-word;
  }
  .map-embed {
    margin: 0 0 1rem 0;
    border-radius: 10px;
    width: 95vw;
    max-width: 95vw;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(34,40,49,0.06);
  }
  .map-embed iframe {
    width: 95vw !important;
    min-width: 0;
    height: 140px !important;
    display: block;
    border-radius: 10px;
  }
  .contact-form {
    min-width: 0;
    padding: 0.7rem 0.3rem 0.9rem 0.3rem;
    background: #fff;
    margin-bottom: 0.5rem !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.6rem 0.6rem;
    border-radius: 7px;
  }
  .contact-form button {
    font-size: 0.98rem;
    border-radius: 10px;
    padding: 0.6rem 0;
  }
  .footer {
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.95rem;
  }
  .map-embed iframe {
    height: 120px;
  }
} 