/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    padding: 0;
}

/* === Layout === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.content {
    flex-grow: 1;
    padding: 40px 20px;
}
body.homepage > div.container > div.row > div.col-md-3 {
    display: none;
}
body.homepage > div.container > div.row > div.col-md-9 {
    margin-left: 0;
    flex: 0 0 100%;
}
body.homepage {
    font-size: large;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* === Typography === */
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 20px;
}
h1 {
    font-size: 48px;
    font-weight: bold;
    color: rgb(255, 94, 0);
    text-align: center;
}
h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(255, 94, 0);
}
h3 {
    font-size: 22px;
    color: rgb(255, 94, 0);
}
h4, h5 {
    font-size: 18px;
    font-weight: normal;
}
p {
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
}

/* === Lists === */
ul, ol {
    margin: 10px 0 15px 20px;
    line-height: 1.5;
}

/* === Notes / Boxes === */
.note {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: white;
    border-left: 5px solid rgb(255, 94, 0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* === Links === */
a, ul a, ol a {
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline;
    color: rgb(255, 94, 0);
}
a:hover {
    background-color: rgba(255, 94, 0, 0.1);
}

/* === Buttons === */
.btn-orange {
    background-color: rgb(255, 94, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.btn-orange:hover {
    background-color: #e85c00;
}

/* === Images === */
img {
    transition: transform 0.3s ease;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}
img:hover {
    transform: scale(1.05);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background: #101010;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d0d0d;
}
::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

/* === Animated Header === */
@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.zoomIn {
    font-size: 3em;
    font-weight: bold;
    color: #f0f0f0;
    background-image: url('/logo/advaita_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    animation: zoomIn 1s ease-out;
}

/* === Navigation === */
.navbar {
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.navbar.bg-primary {
    background-image: linear-gradient(rgb(255, 94, 0), rgb(255, 94, 0)) !important;
}
.nav.navbar-nav,
.nav.navbar-nav a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}
.nav.navbar-nav a:hover {
    color: black;
}
.nav-item.dropdown .dropdown-menu {
    background-color: white;
    color: black;
    font-family: 'Poppins', sans-serif;
}
.nav-item.dropdown .dropdown-menu a {
    color: black;
}
.nav-item.dropdown .dropdown-menu a:hover {
    background-color: rgb(255, 94, 0);
    color: white;
}
.nav.flex-column,
.nav.flex-column a {
    color: rgb(255, 94, 0);
    text-decoration: none;
}
.nav.flex-column a:hover {
    color: rgb(255, 94, 0);
}
.nav-item a[rel="prev"],
.nav-item a[rel="next"] {
    display: none !important;
}
