/* Blogger Course - Layout System - Editorial Grid */

/* Header & Navigation */
.bc-nav1ak {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bc-c9);
  z-index: 1000;
  transition: box-shadow var(--bc-a2) ease;
}

.bc-nav1ak.bc-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.bc-navwrap1al {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bc-s5) var(--bc-s6);
  max-width: 1400px;
  margin: 0 auto;
}

.bc-logo1am {
  font-family: 'Playfair Display', serif;
  font-size: var(--bc-t7);
  font-weight: 700;
  color: var(--bc-c1);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.bc-navlist1an {
  display: flex;
  gap: var(--bc-s7);
  list-style: none;
  align-items: center;
}

.bc-navitem1ao {
  font-family: 'Libre Franklin', sans-serif;
  font-size: var(--bc-t2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bc-navlink1ap {
  color: var(--bc-c11);
  text-decoration: none;
  position: relative;
  transition: color var(--bc-a2) ease;
  padding: var(--bc-s2) 0;
}

.bc-navlink1ap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bc-c6);
  transition: width var(--bc-a3) ease;
}

.bc-navlink1ap:hover {
  color: var(--bc-c1);
}

.bc-navlink1ap:hover::after {
  width: 100%;
}

.bc-navlink1ap.bc-active {
  color: var(--bc-c1);
}

.bc-navlink1ap.bc-active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.bc-menutog1aq {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--bc-s2);
  position: absolute;
  z-index: 10;
  right: 0;
}

.bc-pathstep1ex > *{
  text-align: center;
}

.bc-pathbtn1ez, .bc-pathre.start1ff{
      background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Franklin', sans-serif;
    font-size: var(--bc-t3);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.bc-quotenav1fs{
  display: none!important;
}

.bc-pathopts1ey{
  display: flex;
  justify-content: center;
  margin: 5px;
}

.bc-menutog1aq span {
  width: 28px;
  height: 2px;
  background: var(--bc-c1);
  transition: all var(--bc-a2) ease;
}

.bc-menutog1aq.bc-open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.bc-menutog1aq.bc-open span:nth-child(2) {
  opacity: 0;
}

.bc-menutog1aq.bc-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

/* Hero Sections */
.bc-hero1ar {
  padding: var(--bc-s10) 0;
  position: relative;
  overflow: hidden;
}

.bc-hero1ar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('../images/banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.bc-herocont1as {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.bc-herotitle1at {
  font-size: clamp(var(--bc-t9), 6vw, var(--bc-t11));
  margin-bottom: var(--bc-s5);
  line-height: 1.1;
}

.bc-herosub1au {
  font-size: clamp(var(--bc-t5), 2.5vw, var(--bc-t7));
  color: var(--bc-c11);
  margin-bottom: var(--bc-s7);
  font-weight: 400;
}

.bc-herocta1av {
  display: flex;
  gap: var(--bc-s4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Grid Layouts */
.bc-grid1aw {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--bc-s7);
  margin: var(--bc-s8) 0;
}

.bc-grid2ax {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--bc-s7);
}

.bc-grid3ay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-s6);
}

.bc-asymgrid1az {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--bc-s7);
}

.bc-asymgrid2ba {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--bc-s7);
}

/* Card Components */
.bc-card1bb {
  background: var(--bc-c5);
  border: 1px solid var(--bc-c9);
  transition: all var(--bc-a3) ease;
  position: relative;
  overflow: hidden;
}

.bc-card1bb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left var(--bc-a4) ease;
}

.bc-card1bb:hover {
  border-color: var(--bc-c6);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.bc-card1bb:hover::before {
  left: 100%;
}

.bc-cardimg1bc {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.bc-cardbody1bd {
  padding: var(--bc-s6);
}

.bc-cardtitle1be {
  font-size: var(--bc-t6);
  margin-bottom: var(--bc-s4);
}

.bc-cardtext1bf {
  color: var(--bc-c10);
  margin-bottom: var(--bc-s5);
  line-height: 1.7;
}

.bc-cardmeta1bg {
  display: flex;
  gap: var(--bc-s4);
  font-size: var(--bc-t2);
  color: var(--bc-c11);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Libre Franklin', sans-serif;
}

/* Section Layouts */
.bc-section1bh {
  padding: var(--bc-s10) 0;
}

.bc-section2bi {
  padding: var(--bc-s8) 0;
  background: var(--bc-c4);
}

.bc-sectionhead1bj {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--bc-s8);
}

.bc-sectiontitle1bk {
  font-size: clamp(var(--bc-t7), 4vw, var(--bc-t9));
  margin-bottom: var(--bc-s5);
}

.bc-sectionlabel1bl {
  font-size: var(--bc-t2);
  color: var(--bc-c6);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--bc-s3);
  display: block;
}

/* Footer */
.bc-footer1bm {
  background: var(--bc-c1);
  color: var(--bc-c5);
  padding: var(--bc-s9) 0 var(--bc-s6);
  margin-top: var(--bc-s10);
}

.bc-footgrid1bn {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--bc-s7);
  margin-bottom: var(--bc-s8);
}

.bc-footcol1bo {
  display: flex;
  flex-direction: column;
  gap: var(--bc-s4);
}

.bc-foottitle1bp {
  font-size: var(--bc-t5);
  font-weight: 700;
  margin-bottom: var(--bc-s3);
  color: var(--bc-c6);
}

.bc-footlink1bq {
  color: var(--bc-c9);
  text-decoration: none;
  transition: color var(--bc-a2) ease;
  font-size: var(--bc-t3);
}

.bc-footlink1bq:hover {
  color: var(--bc-c6);
}

.bc-footbottom1br {
  border-top: 1px solid var(--bc-c3);
  padding-top: var(--bc-s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--bc-s4);
  font-size: var(--bc-t2);
  color: var(--bc-c10);
}

.bc-footlegal1bs {
  display: flex;
  gap: var(--bc-s5);
  flex-wrap: wrap;
}

/* Article Layout */
.bc-article1bt {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--bc-s8) var(--bc-s6);
}

.bc-articlehead1bu {
  margin-bottom: var(--bc-s8);
  text-align: center;
}

.bc-articletitle1bv {
  font-size: clamp(var(--bc-t8), 5vw, var(--bc-t10));
  margin-bottom: var(--bc-s5);
  line-height: 1.2;
}

.bc-articlemeta1bw {
  display: flex;
  gap: var(--bc-s5);
  justify-content: center;
  flex-wrap: wrap;
  font-size: var(--bc-t2);
  color: var(--bc-c11);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--bc-s6);
}

.bc-articleimg1bx {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: var(--bc-s8);
  border-radius: 2px;
}

.bc-articlecont1by {
  font-size: var(--bc-t4);
  line-height: 1.9;
}

.bc-articlecont1by h2 {
  font-size: var(--bc-t7);
  margin-top: var(--bc-s8);
  margin-bottom: var(--bc-s5);
}

.bc-articlecont1by h3 {
  font-size: var(--bc-t6);
  margin-top: var(--bc-s7);
  margin-bottom: var(--bc-s4);
}

.bc-articlecont1by p {
  margin-bottom: var(--bc-s5);
}

.bc-articlecont1by blockquote {
  border-left: 4px solid var(--bc-c6);
  padding-left: var(--bc-s5);
  margin: var(--bc-s7) 0;
  font-style: italic;
  font-size: var(--bc-t5);
  color: var(--bc-c11);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .bc-grid2ax {
    grid-template-columns: 1fr;
  }
  
  .bc-asymgrid1az,
  .bc-asymgrid2ba {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bc-navlist1an {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bc-c5);
    flex-direction: column;
    padding: var(--bc-s8) var(--bc-s5);
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    transition: right var(--bc-a3) ease;
    align-items: flex-start;
    gap: var(--bc-s5);
  }
  
  .bc-navlist1an.bc-open {
    right: 0;
  }
  
  .bc-menutog1aq {
    display: flex;
  }
  
  .bc-grid3ay {
    grid-template-columns: 1fr;
  }
  
  .bc-herocta1av {
    flex-direction: column;
    align-items: center;
  }
  
  .bc-footbottom1br {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bc-navwrap1al {
    padding: var(--bc-s4) var(--bc-s4);
  }
  
  .bc-hero1ar {
    padding: var(--bc-s8) 0;
  }
  
  .bc-cardimg1bc {
    height: 200px;
  }
  
  .bc-articleimg1bx {
    height: 300px;
  }
}
