body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #fefaf6;
    color: #2e2e2e;
  }
  
  header {
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    background-color: rgba(254, 250, 246, 0.95); 
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    opacity: 0.8;
    z-index: 999;
    backdrop-filter: blur(6px); 
   
    
  }
@media (max-width: 768px) {
  
   header {
    background-color: transparent !important;
    box-shadow: none !important; 
  }


  header.nav-open {
    background-color: transparent !important;
    box-shadow: none;
  }
  nav {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
    padding: 2rem 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000; /* içerikten üstte */
    text-align: center;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }


}



  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #2e2e2e;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
  
    font-size: 1rem;
  }
  nav a.active {
  font-weight: bold;
  color: #8b5fc8;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1000;
}


@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fefaf6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav a {
    margin: 10px 0;

  }
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    padding: 20px;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-image {
    min-height: 250px;
    background: none !important;
    display: none;
  }
}


nav a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #8b5fc8;
  bottom: -5px;
  left: 0;
}
  .hero {
    text-align: center;
    padding: 40px 20px;
  }
  
  .hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-top: 30px;
  }
  
  .subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
  }
  
  button {
    background-color: #b4d3b2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background-color: #9abf98;
  }
  
body.about-side-bg {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #faf1e8;
  color: #333;
}

.about-layout {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

.about-text {
  flex: 1;
  padding: 70px;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease forwards;
  opacity: 0;
}
@keyframes fadeSlide {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #8b5fc8;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  background: url('../images/Aerial-Lotus-Pose.jpg') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.8);
  animation: zoomIn 3s ease-in-out forwards;

}

@keyframes zoomIn {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.lotus-icon {
  margin-top: 40px;
}

.lotus-icon img {
  width: 30px;
  height: auto;
  filter: opacity(0.6) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}
.lotus-end {
  width: 48px;
  height: auto;
  opacity: 0.7;
  flex-shrink: 0;
 
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}


@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    margin-top: 60px;
  }
  #background {
    position: fixed;
    inset: 0;
    z-index: -10;
    background: url('../images/namaste.jpg') center/cover no-repeat;
    filter: blur(0.5px) brightness(0.8);
    opacity: 0.7;
    pointer-events: none;
  }
  .highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 280px;
    text-align: center;
    animation: fadeUp 2s ease both;
  }
  .testimonial {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255,255,255,0.8)), url('../images/bg-soft.jpg') center/cover no-repeat;
    padding: 30px 20px;
    text-align: center;
    font-style: italic;
    color: #333;
  }
  
  .testimonial blockquote {
    font-size: 1.4rem;
    color: #444;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
  }
  
  .testimonial span {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    color: #8b5fc8;
  }
  
  @keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.gallery {
  padding: 60px 40px;
  text-align: left;
  background-color: #faf1e8;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #8b5fc8;
  margin-bottom: 40px;
  padding-left: 35px;

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

.pose-caption {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-family: 'Raleway', sans-serif;
  color: #444;
  font-style: italic;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  padding-top: 60px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: auto;
}
.modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 70vh;
  }
}
#caption {
   color: #fff;
  margin-top: 12px;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}


.contact-section {
    max-width: 600px;
    margin: 6rem auto;
    padding: 2rem;
    background-color: #fdf9f6;
    border-radius: 12px;
    opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-section {
    margin: 6rem 1rem; 
    padding: 2rem 1.5rem;
     border-radius: 16px;
  }
}
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8146c1;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    font-family: 'Raleway', sans-serif;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
    font-size: 16px;
}

.contact-form button {
    padding: 0.75rem;
    background-color: #8146c1;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #6b3ea3;
}

.contact-info {
    margin-top: 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #333;
}

.contact-info a {
    color: #8146c1;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
body.contact-page {
    background: url('../images/mudra-hand-position.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    backdrop-filter: blur(2px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  
}
  .fly-yoga-page {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #faf1e8;
  color: #333; 
  }
    
  .fly-yoga-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  background-color: #faf1e8;
  
}
.fly-yoga-section.with-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  flex-wrap: wrap;
}

.fly-yoga-section.left {
  flex-direction: row-reverse;
}

.fly-yoga-section h2,
.fly-yoga-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.fly-yoga-section p,
.fly-yoga-section ul {
  margin-bottom: 1.5rem;
}

.fly-yoga-text {
  flex: 1 1 50%;
 
}

.fly-yoga-text h2,
.fly-yoga-text h3 {
  color: #8146c1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  
}

.fly-yoga-text p,
.fly-yoga-text ul {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  
  
}


.fly-yoga-image {
  flex: 1 1 45%;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
 
}

.fly-yoga-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  margin-top: 3rem;
  transform: rotate(-2.5deg) !important;
  transition: transform 0.3s ease;
  
}

.fly-yoga-image img:hover {
  transform: rotate(-2.5deg) scale(1.04) !important; 
}

.fly-yoga-image.visible img {
  opacity: 1;
  transform: translateY(0);
}

.animated-fly-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
     
}

.fly-yoga-practice {
  flex: 1 1 50%;
  
 
}


.fly-yoga-practice h2,
.fly-yoga-practice h3 {
  color: #8146c1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  
}

.fly-yoga-practice p,
.fly-yoga-practice ul {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  
  
}

/* Responsive */
@media (max-width: 768px) {
  .fly-yoga-section.with-image {
    flex-direction: column;
  }
  .fly-yoga-image,
  .fly-yoga-text {
    flex: 1 1 100%;
  }
}



