body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: linear-gradient(rgba(235, 215, 215, 0.4), rgba(242, 234, 234, 0.4)), url('images/yoga.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 16px;  /* good for laptops/desktops */
    line-height: 1.6;
    text-align: center;
    color: #333;
}

/* ---------------- HEADER ---------------- */
header {
    background-image: url('images/Yoga.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: black;

     /* fade-in animation */
    opacity: 0;
    animation: fadeIn 2.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2em;
    margin: 0.5em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

/* ---------------- SECTIONS ---------------- */
.about, .quote, .gallery, .contact, .timetable {
    padding: 20px;
    font-size: 1em;
}

.gallery img {
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    border-radius: 10px;
}

/* ---------------- BUTTONS ---------------- */
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
}

.whatsapp-button img {
    vertical-align: middle;
    width: 24px;
    margin-right: 8px;
}

.social-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #eee;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
}

.social-button img {
    vertical-align: middle;
    width: 24px;
    margin-right: 8px;
}

/* Flexbox header with images on both sides */
.header-with-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin: 20px 0;
}

/* Center text block */
.header-text {
    flex: 1;
}

/* Side images */
.side-image {
    width: 100px;
    height: 100px;
    object-fit: cover;  /* keeps proportion */
    border-radius: 10px; /* square with slightly rounded corners */
}

/* Glow effect */
.glow-image {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
    border: 2px solid rgba(255, 165, 0, 0.8);
    border-radius: 12px;
}

/* Mobile responsive: stack vertically */
@media (max-width: 768px) {
    .header-with-images {
        flex-direction: column;
    }
    .side-image {
        width: 80px;
        height: 80px;
    }
}

/* ---------------- TIMETABLE ---------------- */
.timetable {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
}

.timetable ul {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
}

.timetable li {
    margin: 10px 0;
}

/* ---------------- CHECKLIST ---------------- */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li::before {
    content: "✅ ";
}

/* ---------------- QUOTES ---------------- */
.quote blockquote {
    font-size: 1.1em;
    font-style: italic;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 600px;
    padding: 10px 15px;
    border-left: 4px solid #6a5acd; /* purple accent */
    background: rgba(240, 240, 250, 0.6);
    border-radius: 8px;
}

/* ---------------- ABOUT ---------------- */
.about {
    background: #fafafa; /* very light calming background */
    padding: 40px 25px;
    max-width: 850px;
    margin: 40px auto;
    border-radius: 16px;

    /* ✨ Soft yogic glow */
    box-shadow: 0 0 20px rgba(255, 200, 150, 0.35);

    line-height: 1.8;
    font-size: 1.15em;   /* increased slightly */
    color: #333;
    text-align: center;
    transition: transform 0.3s ease;
}

 /*.about:hover {
    transform: scale(1.01);  gentle hover lift 
} */

.about h2 {
    font-size: 1.9em;     /* bigger heading */
    color: #4a2c2a;       /* earthy tone */
    margin-bottom: 10px;
}

.about h3 {
    font-size: 1.4em;
    color: #6b3e3e;
    margin-bottom: 20px;
}

.about p {
  text-align: left;
  max-width: 650px;
  margin: 20px auto;
  padding: 15px 18px;                /* inner space for glow */
  font-size: 1.1rem;                 /* slightly bigger font */
  color: #444;                       /* soft gray text */
  line-height: 1.8;
  font-family: 'Segoe UI', sans-serif;

  /* Yogic glow background (same style as quote) */
/background: rgba(240, 240, 250, 0.6);
  border-radius: 8px;
}

/* Tablet optimization */
@media (max-width: 768px) {
  .about p {
    font-size: 1rem;  
    background: rgba(240, 240, 250, 0.5); /* slightly lighter */
    padding: 10px 14px;
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .about p {
    font-size: 0.95rem;
    background: rgba(240, 240, 250, 0.4); /* more transparent for calmness */
    padding: 8px 12px;
  }
}

.about .checklist {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

.about .checklist li {
    margin: 8px 0;
    font-size: 1.05rem;
    padding-left: 26px;
    position: relative;
}

.about .checklist li::before {
    content: "✔";
    color: #c47c48; /* warm yogic checkmark */
    position: absolute;
    left: 0;
}

/* ---------------- FLOATING BUTTON ---------------- */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    z-index: 1100;
    
}

/*-------------- Mobile Friendly Floating Button -----------------*/

.floating-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* ------------ smaller on mobiles --------------- */
@media (max-width: 480px) {
    .floating-btn {
        font-size: 0.9em;
        padding: 10px 16px;
        bottom: 15px;
        right: 15px;
    }
}

/* ---------------- RESPONSIVE FONTS ---------------- */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    .quote blockquote {
        font-size: 0.95em;
    }

    .about, .contact {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.1em;
    }

    .quote blockquote {
        font-size: 0.9em;
    }

    .about, .contact {
        font-size: 0.9em;
    }
}


/* Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Stay on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  transition: opacity 0.3s ease;
}

/*----------------glowing border will give your timetable popup a meditative yoga vibe  ------ */

.modal-content {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  padding: 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* ✨ Soft glowing border */
  border: 3px solid #a7d7c5;  /* light pastel green */
  box-shadow: 0 0 15px rgba(167, 215, 197, 0.8), 
              0 0 30px rgba(167, 215, 197, 0.5),
              0 0 45px rgba(167, 215, 197, 0.3);
  animation: softGlow 3s infinite alternate ease-in-out;
}

/* Glow animation */
@keyframes softGlow {
  from {
    box-shadow: 0 0 10px rgba(167, 215, 197, 0.6),
                0 0 20px rgba(167, 215, 197, 0.4);
  }
  to {
    box-shadow: 0 0 20px rgba(167, 215, 197, 0.9),
                0 0 40px rgba(167, 215, 197, 0.6);
  }
}

/* Close Button */
.close {
  color: #2f4f4f;
  float: right;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #e63946; /* soft red on hover */
}

/* Timetable Titles */
.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c786c; /* calming green */
  border-bottom: 2px solid #b2dfdb;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

/* Table Styling */
.modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 16px;
  background: #ffffffb0; /* soft transparent white */
  border-radius: 10px;
  overflow: hidden;
}

.modal-content th, 
.modal-content td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.modal-content th {
  background-color: #a5d6a7; /* light green */
  color: #1b4332;
  font-weight: bold;
}

.modal-content tr:nth-child(even) {
  background-color: #f9fbe7; /* soft light yellow-green */
}

/* Animation for modal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Make footer stick to bottom */

html, body {
  height: 100%;              
  display: flex;
  flex-direction: column;    
  margin: 0;
  padding: 0;
}

main {
  flex: 1;  /* pushes footer down */
}

/* Footer for All rights reserved and Developed by name */
/* Minimal copyright footer */
footer {
  text-align: center;
  padding: 6px 0;               /* slim but visible */
  font-size: 0.61rem;           /* small standard copyright size */
  font-weight: normal;          /* ensure not bold */
  color: #777;                  /* light grey text */
  background: #f5f5f5;          /* soft neutral bg */
  border-top: 1px solid #ddd;   /* subtle divider */
}

footer .copyright {
  font-family: "Georgia", serif;   /* elegant font */
  font-size: 0.75rem;              /* small and subtle */
  color: #666;                     /* soft grey */
  margin: 4px 0;
}

footer .dev-note {
  font-family: "Courier New", monospace;  /* developer-style font */
  font-size: 0.7rem;
  color: #444;
  margin: 2px 0;
}

/* Tablet optimization */
@media (max-width: 768px) {
  footer {
    font-size: 0.6rem;
    padding: 5px 0;
  }
  footer .dev-note {
    font-size: 0.55rem;
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  footer {
    font-size: 0.55rem;         /* very compact on small screens */
    padding: 4px 0;
  }
  footer .dev-note {
    font-size: 0.5rem;
  }
}


/* Fallback Play Button style for Om sound */
#playOmBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #6a5acd, #483d8b);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.95em;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: opacity 0.6s ease;
  z-index: 1200;
}

#playOmBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

#playOmBtn.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}




















