/* =========================
   GLOBAL
========================= */

body{
font-family: 'Segoe UI', Arial, sans-serif;
margin:0;
background:#f4f7f6;
}

.container{
padding:25px;
background:white;
margin:20px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

footer{
background: linear-gradient(135deg, #0f766e, #14b8a6);
color:white;
text-align:center;
padding:15px;
margin-top:20px;
}

/* =========================
   MODERN HEADER
========================= */

header{
display:flex;
align-items:center;
padding:8px 30px;
background: linear-gradient(135deg, #0f766e, #14b8a6);
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
position:sticky;
top:0;
z-index:1000;
}

/* =========================
   LOGO WITH ROTATING TEXT
========================= */

.logo-wrapper{
width:80px;
height:80px;
display:flex;
align-items:center;
justify-content:center;
margin-right:20px;
margin-left: 15%;
}

.logo-circle-container{
position:relative;
width:80px;
height:80px;
}

/* FIXED LOGO IMAGE */

.logo-img{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:50px;
height:50px;
border-radius:50%;
z-index:2;
box-shadow:0 0 10px rgba(255,255,255,0.6);
}

/* ROTATING TEXT */

.rotating-text{
position:absolute;
width:80px;
height:80px;
animation: rotateText 14s linear infinite;
}

.circle-text{
fill:white;
font-size:7px;
letter-spacing:1.2px;
font-weight:bold;
}

/* ROTATION ANIMATION */

@keyframes rotateText{
from{
transform:rotate(0deg);
}
to{
transform:rotate(360deg);
}
}

/* =========================
   NAVIGATION BAR
========================= */

nav{
display:flex;
gap:10px;
align-items:center;
flex-wrap:wrap;

}

/* NAV LINKS */

nav a{
color:white;
text-decoration:none;
font-size:15px;
font-weight:500;
padding:8px 14px;
border-radius:6px;
transition: all 0.3s ease;
}

/* HOVER EFFECT */

nav a:hover{
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

/* =========================
   DROPDOWN
========================= */

.dropdown{
position:relative;
}

.dropbtn{
background:none;
border:none;
color:white;
font-size:15px;
font-weight:500;
cursor:pointer;
padding:8px 14px;
border-radius:6px;
transition: all 0.3s ease;
}

.dropbtn:hover{
background: rgba(255,255,255,0.2);
}

/* DROPDOWN MENU */

.dropdown-content{
display:none;
position:absolute;
top:100%;
left:0;
background:white;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
overflow:hidden;
min-width:230px;
animation: fadeIn 0.3s ease;
}

.dropdown-content a{
color:#0f766e;
padding:12px 16px;
display:block;
font-weight:500;
transition:0.2s;
}

.dropdown-content a:hover{
background:#f0fdfa;
padding-left:20px;
}

.dropdown:hover .dropdown-content{
display:block;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* =========================
   MAIN LAYOUT
========================= */

.main-layout{
display:flex;
margin:20px;
gap:20px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
width:260px;
background: linear-gradient(180deg, #0f766e, #14b8a6);
padding:20px;
border-radius:8px;
height:fit-content;
box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

.sidebar h3{
color:white;
margin-bottom:15px;
border-bottom:1px solid rgba(255,255,255,0.3);
padding-bottom:5px;
}

/* SIDEBAR LINKS */

.sidebar a{
display:block;
color:white;
text-decoration:none;
padding:10px;
margin-bottom:6px;
border-radius:6px;
transition: all 0.3s ease;
}

.sidebar a:hover{
background: rgba(255,255,255,0.2);
padding-left:18px;
}

/* =========================
   CONTENT AREA
========================= */

.content-area{
flex:1;
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media(max-width:900px){

.main-layout{
flex-direction:column;
}

.sidebar{
width:100%;
}

nav{
flex-wrap:wrap;
}

}


/* =========================
   TABLET VIEW
========================= */

@media (max-width: 1024px){

.main-layout{
flex-direction:column;
}

.sidebar{
width:100%;
}

.logo-wrapper{
width:70px;
height:70px;
}

.main-title{
font-size:22px;
}

.subtitle{
font-size:18px;
}

}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 768px){

/* header */
header{
flex-direction:column;
align-items:flex-start;
height:auto;
padding:10px;
}

/* navbar */
nav{
flex-wrap:wrap;
gap:8px;
}

/* navbar links */
nav a, .dropbtn{
font-size:14px;
padding:6px 10px;
}

/* title */
.main-title{
font-size:18px;
}

.website-link{
font-size:14px;
}

.subtitle{
font-size:16px;
}

/* sidebar */
.sidebar{
width:100%;
}

/* content */
.content-area{
padding:15px;
}

}

/* =========================
   SMALL MOBILE VIEW
========================= */

@media (max-width: 480px){

.logo-wrapper{
width:60px;
height:60px;
}

.logo-img{
width:32px;
height:32px;
}

.circle-text{
font-size:5px;
}

.main-title{
font-size:16px;
}

.subtitle{
font-size:14px;
}

}

/* =========================
   TOP CENTER TITLE
========================= */

.top-title-section{
text-align:center;
background:white;
padding:15px 10px 5px 10px;
}

.main-title{
color:#0D47A1;
font-size:26px;
font-weight:bold;
margin:0;
}

.website-link{
display:block;
color:#1565c0;
font-size:18px;
margin-top:5px;
text-decoration:none;
font-weight:500;
}

.website-link:hover{
text-decoration:underline;
}

.subtitle{
color:#5D0565;
font-size:22px;
margin-top:8px;
font-weight:bold;
}

/* YOGA PAGE LAYOUT */

.yoga-layout{
display:flex;
gap:20px;
padding:20px;
}

/* SIDEBAR */

.yoga-sidebar{
width:250px;
background: linear-gradient(180deg,#0f766e,#14b8a6);
padding:20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.yoga-sidebar h3{
color:white;
margin-bottom:15px;
}

.yoga-sidebar a{
display:block;
color:white;
text-decoration:none;
padding:10px;
margin-bottom:8px;
border-radius:6px;
transition:0.3s;
}

.yoga-sidebar a:hover{
background:rgba(255,255,255,0.2);
padding-left:18px;
}

/* CONTENT */

.yoga-content{
flex:1;
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* CARDS */

.yoga-card-container{
display:flex;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.yoga-card{
background:#f0fdfa;
padding:20px;
border-radius:10px;
width:250px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.yoga-card:hover{
transform:translateY(-5px);
}

.yoga-card a{
text-decoration:none;
color:#0f766e;
font-weight:bold;
}

/* ================= FOOTER ================= */

.main-footer{
background:linear-gradient(135deg,#0b6b5c,#13a89e);
color:white;
margin-top:50px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
padding:40px 60px;
gap:30px;
}

.footer-section{
flex:1;
min-width:250px;
}

.footer-section h3{
margin-bottom:15px;
font-size:20px;
border-bottom:2px solid rgba(255,255,255,0.3);
padding-bottom:5px;
}

.footer-section p{
line-height:1.6;
opacity:0.9;
}

.footer-section a{
display:block;
color:white;
text-decoration:none;
margin-bottom:8px;
transition:0.3s;
}

.footer-section a:hover{
padding-left:5px;
opacity:0.8;
}

.footer-bottom{
text-align:center;
padding:15px;
background:rgba(0,0,0,0.2);
font-size:14px;
letter-spacing:1px;
}

/* Responsive */

@media(max-width:768px){

.footer-container{
flex-direction:column;
padding:30px;
}

}