/**
 * IKS Conference 2026 — Components Stylesheet (Glassmorphism & Balanced Mobile Containers)
 * Poornaprajna Institute of Management (PIM), Udupi
 */

/* Inner Pages General Layout */
.inner-page {
  min-height: 75vh;
  background: linear-gradient(135deg, #fbf3df, #f0d9a7);
  padding-bottom: 90px;
  width: 100%;
  box-sizing: border-box;
}

.page-title {
  background: rgba(58, 12, 17, 0.96);
  color: #f8e7bd;
  padding: 60px 6vw;
  border-bottom: 5px double var(--gold);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  width: 100%;
}

.page-title.simple-title {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-title.simple-title h1 {
  margin: 0;
}

.page-title:after {
  content: "ॐ";
  position: absolute;
  right: 7vw;
  top: 0;
  font-family: Georgia, serif;
  font-size: 180px;
  color: rgba(222, 171, 75, 0.08);
  pointer-events: none;
}

.page-title .kicker {
  color: var(--saffron);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.page-title h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 400;
  margin: 12px 0;
  position: relative;
  z-index: 2;
  line-height: 1.05;
}

.page-title > p:last-child {
  max-width: 700px;
  color: #cdbb95;
  line-height: 1.6;
  font-size: 18px;
  margin-top: 10px;
}

/* Call for Papers Page Layout */
.paper-layout {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(36px, 5vw, 70px) clamp(16px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

/* Glassmorphic Guidelines & Dates Card */
.guidelines,
.dates-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(42, 9, 12, 0.9);
  color: #f8e7bd;
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid var(--gold);
  border-radius: 8px;
  position: sticky;
  top: 115px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.guidelines:hover,
.dates-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.guidelines h2,
.dates-card h2 {
  color: #f3d58e;
}

.guidelines dl {
  margin: 20px 0;
}

.guidelines dl > div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(233, 198, 110, 0.22);
}

.guidelines dt {
  color: #cbb48a;
}

.guidelines dd {
  font-weight: bold;
  margin: 0;
  color: #f8e7bd;
}

.guidelines p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbb48a;
}

.guidelines .button {
  margin-top: 18px;
  width: 100%;
  box-sizing: border-box;
}

/* Conference Tracks List with Glass Cards */
.track-list {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(36px, 5vw, 70px) clamp(16px, 4.5vw, 60px);
  display: grid;
  gap: 16px;
}

.full-track {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 250, 240, 0.85);
  border: 1px solid rgba(210, 178, 109, 0.45);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(77, 23, 24, 0.04);
  transition: all 0.35s var(--ease-apple);
  overflow: hidden;
}

.full-track:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(77, 23, 24, 0.08);
  border-color: var(--gold);
}

.full-track > button {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 26px clamp(16px, 2.5vw, 28px);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.full-track > button:hover {
  background: rgba(201, 148, 56, 0.05);
}

.full-track > button > span {
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--saffron);
  font-weight: bold;
  transition: transform 0.3s var(--ease-apple);
}

.full-track:hover > button > span {
  transform: scale(1.08);
}

.full-track small {
  letter-spacing: 0.16em;
  color: #a16f25;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
}

.full-track h2 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  margin: 5px 0 0;
  color: var(--ink);
}

.full-track > button > b {
  font-size: 30px;
  color: var(--gold);
  text-align: center;
  transition: transform 0.3s var(--ease-apple);
}

.full-track.open {
  border-color: var(--saffron);
  box-shadow: inset 4px 0 0 var(--saffron), 0 8px 24px rgba(180, 59, 32, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.full-track.open > button > b {
  transform: rotate(180deg);
}

.full-track ol {
  margin: 0;
  padding: 8px 30px 32px clamp(40px, 6vw, 105px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px clamp(20px, 3vw, 45px);
  list-style: decimal;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 19px !important;
  line-height: 1.75;
}

.full-track li {
  line-height: 1.5;
  color: #614b3e;
  padding-left: 6px;
  font-size: 17.5px;
}

.full-track li::marker {
  color: var(--saffron);
  font-weight: bold;
}

.track-note {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 24px;
  background: rgba(58, 12, 17, 0.92);
  color: #dfca9e;
  line-height: 1.6;
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Publication Page */
.publication-page {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(36px, 5vw, 70px) clamp(16px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

.publication-page .brochure-copy ul {
  padding-left: 22px;
}

.publication-page .brochure-copy li {
  margin-bottom: 12px;
}

.dates-card {
  position: static;
}

.dates-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(233, 198, 110, 0.2);
  font-size: 16px;
}

.dates-card span {
  color: #c9b48e;
}

.dates-card b {
  text-align: right;
  color: #f8e7bd;
}

.fee-table {
  border: 1px solid rgba(203, 166, 95, 0.6);
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.fee-table > div {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  border-bottom: 1px solid #dcc893;
}

.fee-table > div:first-child {
  background: var(--deep);
  color: #f1d685;
  font-weight: bold;
}

.fee-table span,
.fee-table b {
  padding: 13px;
  font-size: 16px;
}

.pending-note {
  background: rgba(245, 223, 171, 0.85);
  padding: 16px 20px;
  border-left: 4px solid var(--saffron);
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  color: #5d3e1f;
  margin-top: 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Glassmorphic Abstract Submission Card */
.placeholder-card {
  margin: 60px auto;
  max-width: 820px;
  width: calc(100% - 32px);
  box-sizing: border-box;
  background: rgba(255, 252, 243, 0.88);
  padding: clamp(30px, 5vw, 60px);
  text-align: center;
  border: 1px solid rgba(201, 148, 56, 0.45);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(77, 23, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(77, 23, 24, 0.12);
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 35px;
  color: var(--saffron);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 148, 56, 0.25);
  transition: transform 0.35s var(--ease-apple);
}

.placeholder-card:hover .placeholder-icon {
  transform: scale(1.1);
}

.placeholder-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--ink);
  margin: 20px 0 10px;
}

.mini-guidelines {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.mini-guidelines span {
  padding: 10px 15px;
  background: rgba(240, 223, 185, 0.75);
  font-size: 14px;
  color: #5d3e1f;
  border-radius: 4px;
  font-weight: bold;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 148, 56, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Announcements Grid with Glass Cards */
.announcement-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(36px, 5vw, 70px) clamp(16px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.announcement-grid article {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 252, 243, 0.85);
  border: 1px solid rgba(211, 181, 111, 0.4);
  border-radius: 10px;
  padding: clamp(24px, 3.5vw, 35px);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(77, 23, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple), border-color 0.3s ease;
}

.announcement-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(77, 23, 24, 0.12);
  border-color: var(--gold);
}

.announcement-grid article > span {
  font-family: Georgia, serif;
  font-size: 35px;
  color: var(--saffron);
  font-weight: bold;
}

.announcement-grid h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--ink);
  margin: 10px 0;
}

.announcement-grid p {
  color: #6d5545;
  flex-grow: 1;
}

.announcement-grid b {
  display: block;
  margin-top: 25px;
  color: #9b6725;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Glassmorphic Contact Card */
.contact-card {
  margin: 60px auto;
  max-width: 850px;
  width: calc(100% - 32px);
  box-sizing: border-box;
  background: rgba(255, 252, 243, 0.88);
  border: 1px solid rgba(201, 148, 56, 0.45);
  border-radius: 12px;
  padding: clamp(30px, 4.5vw, 55px);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 45px;
  align-items: start;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(77, 23, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(77, 23, 24, 0.12);
}

.contact-logo-container {
  width: 140px;
  height: 140px;
  background: #ffffff !important;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(201, 148, 56, 0.4);
  transition: transform 0.35s var(--ease-apple);
}

.contact-card:hover .contact-logo-container {
  transform: scale(1.04);
}

.contact-logo-container .pim-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  margin: 5px 0 15px;
  color: var(--ink);
}

.contact-card address {
  font-style: normal;
  line-height: 1.8;
  color: #5e4739;
  font-size: 18px;
}

.contact-card hr {
  border: 0;
  border-top: 1px solid rgba(209, 179, 114, 0.6);
  margin: 25px 0;
}

.contact-card a {
  color: var(--saffron);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #8d2817;
}
