/* =========================================
   PRANAVA STUDENT – BASE SYSTEM (STABLE)
   Clean Foundation Only
========================================= */


/* ================= RESET ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ================= ROOT ================= */

#app {
  min-height: 100vh;
}


/* ================= APP SHELL ================= */

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app-main {
  flex: 1;
  width: 100%;
}


/* ================= PAGE CONTAINER ================= */

/* Desktop Friendly – No Mobile Lock */

.page-container,
.page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ================= SECTION SPACING ================= */

.section {
  margin-bottom: 24px;
}


/* ================= CARD BASE ================= */

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}


/* ================= TYPOGRAPHY SYSTEM ================= */

.page-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 14px;
  color: #777;
}


/* ================= BUTTON BASE ================= */

button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:active {
  transform: translateY(1px);
}


/* ================= FORM BASE ================= */

input,
textarea,
select {
  font-family: inherit;
  font-size: 14px;
}


/* ================= PROGRESS BASE ================= */

.progress-track {
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 20px;
}


/* ================= LOGO ================= */

.logo {
  height: 75px;
  width: auto;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .page-container,
  .page {
    padding: 0 20px;
  }

}
