/*====================================================
    GYANACHAR AARADHANA
    Theme CSS
====================================================*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Gujarati:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  /* Primary Theme */
  --primary: #9b5b12;
  --primary-dark: #6b3c05;
  --primary-light: #f5d58d;

  /* Secondary */
  --secondary: #6d0f14;
  --secondary-light: #912127;

  /* Background */
  --bg: #f8f6f1;
  --white: #ffffff;
  --black: #111111;

  /* Text */
  --text: #343434;
  --text-light: #6d6d6d;

  /* Borders */
  --border: #e5d4ab;

  /* Success */
  --success: #198754;

  /* Danger */
  --danger: #dc3545;

  /* Warning */
  --warning: #ffc107;

  /* Shadow */
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius: 15px;
}

/*====================================================
    General
====================================================*/

body {
  font-family: "Poppins", "Noto Sans Gujarati", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  overflow-x: hidden;
}

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
}

.section {
  padding: 40px 0;
}

/*====================================================
    Navbar
====================================================*/

.navbar {
  background: linear-gradient(90deg, var(--secondary), var(--primary-dark));

  box-shadow: var(--shadow);

  position: relative;

  z-index: 1030;
}

.navbar-brand img {
  height: 55px;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  margin-left: 8px;
}

.navbar .nav-link:hover {
  color: var(--primary-light);
}

/*====================================================
    Banner
====================================================*/

.banner {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/*====================================================
    Cards
====================================================*/

.card {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: #fff;
  font-weight: 600;
}

/*====================================================
    Buttons
====================================================*/

.btn-theme {
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: #fff;

  border: none;

  padding: 10px 24px;

  border-radius: 8px;

  font-weight: 600;
}

.btn-theme:hover {
  color: #fff;

  transform: translateY(-2px);

  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.btn-outline-theme {
  border: 2px solid var(--primary);

  color: var(--primary);

  font-weight: 600;
}

.btn-outline-theme:hover {
  background: var(--primary);

  color: #fff;
}

/*====================================================
    Tables
====================================================*/

.table thead {
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: #fff;
}

.table {
  border-radius: 10px;

  overflow: hidden;
}

/*====================================================
    Forms
====================================================*/

.form-control,
.form-select {
  border-radius: 8px;

  border: 1px solid var(--border);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 0.15rem rgba(155, 91, 18, 0.25);
}

/*====================================================
    Alerts
====================================================*/

.alert-theme {
  background: #fff5df;

  border-left: 5px solid var(--primary);

  color: var(--primary-dark);
}

/*====================================================
    Footer
====================================================*/

.site-footer {
  background: linear-gradient(90deg, var(--secondary), var(--primary-dark));

  color: #fff;

  margin-top: auto;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer a {
  color: var(--primary-light);
}

.site-footer a:hover {
  color: #fff;
}

/*====================================================
    Utility Classes
====================================================*/

.bg-theme {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.text-theme {
  color: var(--primary);
}

.text-secondary-theme {
  color: var(--secondary);
}

.border-theme {
  border: 1px solid var(--border);
}

.shadow-theme {
  box-shadow: var(--shadow);
}

.rounded-theme {
  border-radius: var(--radius);
}

/*====================================================
    Responsive
====================================================*/

@media (max-width: 768px) {
  .navbar-brand img {
    height: 45px;
  }
}

/*====================================================
    Premium Glass Card
====================================================*/

.glass-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: var(--radius);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  overflow: hidden;
}

/*====================================================
    Registration Page
====================================================*/

.registration-shell {
  max-width: 980px;
}

.registration-card {
  position: relative;
}

.registration-hero {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(155, 91, 18, 0.12);
}

.registration-logo {
  max-height: 180px;
  object-fit: contain;
}

.registration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(155, 91, 18, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.registration-hero-text {
  max-width: 720px;
}

.registration-note {
  font-size: 0.92rem;
}

.registration-alert {
  border-radius: 18px;
}

/*====================================================
    Current Sutra Page
====================================================*/

.current-sutra-shell {
  max-width: 980px;
}

.current-sutra-card {
  position: relative;
}

.current-sutra-hero {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(155, 91, 18, 0.12);
}

.current-sutra-logo {
  max-height: 180px;
  object-fit: contain;
}

.current-sutra-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(155, 91, 18, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.current-sutra-text {
  max-width: 720px;
}

.current-sutra-panel,
.current-sutra-info {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(229, 212, 171, 0.8);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.current-sutra-form .input-group-text {
  background: #fff7e6;
  border-color: var(--border);
  color: var(--primary-dark);
}

.current-sutra-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
  color: var(--text);
}

.current-sutra-list li + li {
  margin-top: 0.85rem;
}

@media (max-width: 768px) {
  .current-sutra-logo {
    max-height: 130px;
  }

  .current-sutra-hero {
    text-align: center;
  }

  .current-sutra-panel,
  .current-sutra-info {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .registration-logo {
    max-height: 130px;
  }

  .registration-hero {
    text-align: center;
  }
}

/*====================================================
    Gold Text
====================================================*/

.gold-text {
  background: linear-gradient(
    90deg,
    #7a4b05 0%,
    #d39d2d 20%,
    #ffd76b 50%,
    #d39d2d 80%,
    #7a4b05 100%
  );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
}

/*====================================================
    Premium Button
====================================================*/

.btn-theme {
  position: relative;

  overflow: hidden;
}

.btn-theme::before {
  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 80px;

  height: 100%;

  background: rgba(255, 255, 255, 0.35);

  transform: skewX(-25deg);
}

.btn-theme:hover::before {
  left: 130%;

  transition: 0.8s;
}

/*====================================================
    Dashboard Card
====================================================*/

.stats-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;

  border-radius: 20px;

  padding: 25px;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.stats-card:hover {
  transform: translateY(-6px);
}

.stats-card h2 {
  font-size: 38px;

  font-weight: 700;
}

.stats-card h6 {
  margin-top: 10px;

  opacity: 0.9;
}
/*====================================================
    Section Title
====================================================*/

.section-title {
  position: relative;

  display: inline-block;

  font-size: 30px;

  font-weight: 700;

  color: var(--secondary);

  margin-bottom: 25px;
}

.section-title::after {
  content: "";

  position: absolute;

  bottom: -10px;

  left: 0;

  width: 60%;

  height: 4px;

  border-radius: 50px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/*====================================================
    Decorative Divider
====================================================*/

.theme-divider {
  width: 100%;

  height: 3px;

  margin: 35px 0;

  border-radius: 50px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    transparent
  );
}
/*====================================================
    Page Wrapper
====================================================*/

.page-box {
  background: #fff;

  padding: 30px;

  border-radius: 20px;

  box-shadow: var(--shadow);
}
label {
  font-weight: 600;

  margin-bottom: 8px;

  color: var(--secondary);
}
.badge-theme {
  background: linear-gradient(90deg, var(--primary), var(--secondary));

  color: #fff;

  padding: 8px 14px;

  border-radius: 50px;

  font-weight: 500;
}
.hover-up {
  transition: 0.3s;
}

.hover-up:hover {
  transform: translateY(-5px);
}

.navbar{
    height:70px;
    padding:0;
}

.navbar .container{
    height:100%;
}

.navbar-brand{
    position:relative;
    display:flex;
    align-items:center;
    padding-left:70px;   /* Space for larger logo */
    min-height:70px;
}

.navbar-brand img{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    height:75px;         /* Increase as needed */
    width:auto;
}

.navbar-brand span{
    line-height:70px;
    font-weight:600;
}

.custom-checkbox{

    width:1.6rem;

    height:1.6rem;

    margin-top:0.2rem;

    cursor:pointer;

}

.form-check-label{

    cursor:pointer;

    line-height:1.7;

}

.text-theme{

    color:var(--theme-color);

}
.form-check-input{

    width: 2em;
    height: 2em;
}
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
  .navbar {
    height: auto;
    min-height: 70px;
    padding: 8px 0;
  }

  .navbar .container {
    height: auto;
    align-items: center;
  }

  .navbar-brand {
    min-height: 54px;
    padding-left: 58px;
  }

  .navbar-brand img {
    height: 56px;
  }

  .navbar-brand span {
    line-height: 1.2;
    font-size: 0.95rem;
  }

  .navbar-collapse {
    margin-top: 8px;
   
    border-radius: 10px;
    padding: 8px 10px;
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 10px 8px;
  }
}