*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}
.header{
  min-height:80vh;
  width:100%;
  background-image:linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)),url(assets/images/eagle.jpeg);
  background-position: center 35%;
  background-size: cover;
  position:relative;
}
.about-header{
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),url(assets/images/kaa2025writing.jpg);
  background-position: center;
}
.logo{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
}
nav {
    display: flex;
    padding: 15px 3%;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 94%;

    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav.scrolled .logo,
nav.scrolled .nav-links ul li a {
    color: #333;
}
nav.scrolled .dropbtn {
    color: #333;
}
nav img{
  width:300px; 
  display:inline-block;
  padding: 8px 12px;
  position:left;

}
.nav-links{
  margin-left:auto;
  display:block;
}
.nav-links ul li{
  list-style: none;
  display:inline-block;
  padding: 8px 12px;
  position:relative;
}
.nav-links ul li a{
  color:#fff;
  text-decoration:none;
  font-size: 15px;
}
.nav-links ul li::after{
  content:"";
  width:0%;
  height: 3px;
  background: #000000;
  display:block;
  margin:auto;
}
.nav-links ul li:hover::after{
  content:"";
  width:100%;
  height: 3px;
  background: #000000;
  display:block;
  margin:auto;
}
/* Hide dropdown on desktop */
.dropdown{
    display:none;
    position:relative;
    margin-left:auto;
    z-index:1001;

}

/* Menu button */
.dropbtn{
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* Dropdown menu */
.dropdown-content{
    display:none;
    position:absolute;
    right:0;
    top:45px;
    background:white;
    min-width:180px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    overflow:hidden;
      z-index:1002;

}

.dropdown-content a{
    display:block;
    padding:14px 18px;
    text-decoration:none;
    color:#333;
}

.dropdown-content a:hover{
    background:#f3f3f3;
}

/* Show menu */
.dropdown-content.show{
    display:block;
}
.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
}

.text-box h1 { 
  font-size: 52px;
}

.text-box p { 
  margin: 15px 40px 40px;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

.hero-btn { 
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #fff;
    background: #000000;
}

@media(max-width:800px){

    .nav-links{
        display:none;
    }
nav.scrolled .dropbtn {
    color: #333;
}
    .dropdown{
        display:block;
        margin-left:auto;
    }

    nav{
        padding:15px 20px;
    }

    nav img{
        width:180px;
    }
}
.intro{
  width:80%;
  margin:auto;
  text-align:center;
  padding-top:100px;
}
.intro .fa-solid{
  font-size:35px;

}

h3{
  font-size:30px;
  font-weight:600;
}
p{
  color:#777;
  font-size:14px;
  font-weight:300;
  line-height:22px;
  padding:10px;
}
.row{
  margin-top:5%;
  display:flex;
  justify-content:space-between;

}


@media(max-width:700px){
  .row{
    flex-direction:column;
  }}
.quote{
  width:80%;
  margin:auto;
  text-align:center;
  padding-top:50px;
}
.reading{
  width:80%;
  margin:auto;
  text-align:center;
  padding-top:50px;
}
.reading-col{
    flex-basis:24%;
    background:#fff3f3;
    border-radius:0px;
    margin-bottom:30px;
    position:relative;
    overflow:hidden;
}

.reading-col img{
    width:100%;
    height:300px;
    object-fit:contain;
    display:block;
}

.reading a{
  text-decoration:none;
  color:black;
}


.footer{
  width:100%;
  text-align:center;
  padding:30px 0;
}
.footer h4{
  margin-bottom: 15px;
  margin-top:20px;
  font-weight:600;
}

.icons .fa-brands{
  margin:0 10px;
  text-decoration:none;
}


/* ==========================
   Blog Page - The Art of Weaving
   ========================== */
.blog-card h2 a,
.blog-card h2 a:visited,
.blog-card h2 a:hover,
.blog-card h2 a:active {
    color: inherit;
    text-decoration: none;
}
.blog-header {
    max-width: 800px;
    margin: 120px auto 80px;
    text-align: center;
    padding: 0 20px;
}

.blog-header h1 {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.blog-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #666;
}


/* Blog listing */

.blog-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 25px 100px;
}


.blog-post {
    padding: 45px 0;
    border-bottom: 1px solid #e8e8e8;
}

.back-blog {
    display: inline-block;
    margin-bottom: 30px;
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-blog:hover {
    opacity: 0.5;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.blog-post h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}


.blog-post h2 a {
    color: #333;
    text-decoration: none;
}


.blog-post h2 a:hover {
    opacity: 0.65;
}

.blog-post ul {
    margin: 25px 0;
    padding-left: 25px;
    color: #555;
    font-size: 1rem;
    line-height: 1.9;
}

.blog-post li {
    margin-bottom: 12px;
}

.blog-post li strong {
    color: #333;
    font-weight: 500;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}
/* Read more link */

.read-more {
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}


.read-more:hover {
    opacity: 0.65;
}


/* Mobile */

@media (max-width: 768px) {

    .blog-header {
        margin: 90px auto 60px;
    }

    .blog-header h1 {
        font-size: 2.2rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-post {
        padding: 35px 0;
    }

    .blog-post h2 {
        font-size: 1.5rem;
    }
}
/* ==========================
            Blog Post
   ========================== */
.post-container {
    max-width: 750px;
    margin: auto;
    padding: 100px 30px;
}

.blog-post {
    line-height: 1.8;
}

.blog-post h1 {
    margin-bottom: 20px;
}

.blog-post p,
.blog-post ul {
    margin-bottom: 25px;
}

.blog-post p,
.blog-post li {
    font-size: 1rem;
    line-height: 1.8;
}

.blog-post ul {
    padding-left: 1.5rem;
}

.blog-post li {
    margin-bottom: 30px;
}

.blog-post li em {
    display: block;
    margin-top: 5px;
}

.blog-post li div {
    margin-top: 5px;
}
.blog-post:last-child,
.blog-post p:last-child {
    margin-bottom: 0;
}

/* Reference Section */

.reference {
    margin-top: 20px;
    padding-top: 0px;
}

.reference h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.reference p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
    margin: 0;
}

.reference em {
    font-style: italic;
}

.reference a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: opacity 0.3s ease;
}

.reference a:hover {
    opacity: 0.65;
}

@media(max-width:700px){

    .post-container {
        padding: 60px 20px;
    }

}
/* ==========================
   Reading Page - The Art of Seeing
   ========================== */

.content{
  width:80%;
  margin:auto;
  padding-top:10px;
  padding-bottom:0;
}

.content-col{
  flex-basis:48%;
  padding: 30px 2px;
}

.content-col img{
  height:80%;
  width:70%;
}
.content-col h1{
  padding-top:0;
}

.content-col p{
  padding: 15px 0 25px;
}
.book-author {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 25px;
}
/* ==========================
          About Page
   ========================== */

.sub-header{
  height:50vh;
  width:100%;
  background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(herobanner.jpg);
  background-position: center;
  background-size: cover;
  text-align:center;
  color:#fff
}
.sub-header h1{
  margin-top:10px;
}

.about-us{
  width:80%;
  margin:auto;
  padding-top:80px;
  padding-bottom:50px
}

.about-col{
  flex-basis:48%;
  padding: 30px 2px;
}

.about-col img{
  width:100%;
}
.about-col h1{
  padding-top:0;
}

.about-col p{
  padding: 15px 0 25px;
}
.yoga-journey {
    text-align: center;
    margin-top: 20px;
    padding: 20px 30px 40px;
}

.yoga-journey p {
    margin-bottom: 5px;
    line-height: 1.8;
}

.yoga-journey a {
    color: inherit;
    text-decoration: none;
}

.yoga-journey img {
    width: 60px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.yoga-journey img:hover {
    opacity: 1;
}
.red-btn{
  border: 1px solid #f44336;
  background:transparent;
  color:#f44336;
}

.red-btn:hover{
  color:#fff;
}
/*---------------contact us page ---------------*/

.location{
  width:80%;
  margin:auto;
  padding-top:80px 0;
}

.location iframe{
  width:100%;

}

.contact-us{
  width:80%;
  margin:auto;
}

.contact-col{
  flex-basis:48%;
  padding-bottom: 30px;
}
.contact-col div{
  display:flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa-solid{
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p{
  padding:0;
}
.contact-col div h5{
  font-size:20px;
  color:#555;
  margin-bottom:5px;
  font-weight:500px;
}
