   :root {
    --burgundy: #4A0C2C;
    --cream: #F4DDBA;
    --gold: #D47A41;
    --dark: #6A2B1A;
    --text: #533A2A;
    --white: #ffffff;
    }
    

/* =====================================================
   GLOBAL RESET
===================================================== */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:"sans-serif";
  background:var(--burgundy);
  color:var(--text);
}

/* =====================================================
   HERO LAYOUT
===================================================== */
.hero{
  display:flex;
  min-height:100vh;
}

/* LEFT PANEL */
.hero-left{
  width:45%;
  padding:60px 40px;
  background:var(--burgundy);
  color:black;

  display:flex;
  flex-direction:column;
  justify-content:center;   
  align-items:center;      
  text-align:center;
 
}


.hero-script{
  font-family:Allura, cursive;
  font-size:48px;
  color:#f532db;
  margin-bottom:30px;
}

.hero-title{
  font-family:'Playfair Display', serif;
  font-size:96px;
  line-height:1.05;
  margin:0;
  color:#f6e7c8;
}

.hero-title span{
  font-family:Allura, cursive;
  color:var(--gold);
  font-size:72px;
}

.hero-date{
  margin-top:20px;
  font-size:16px;
  color:var(--cream);
}

/* RIGHT PANEL */
.hero-right{
  width:55%;
  background:var(--cream);
  padding:65px 50px;
  overflow-y:auto;
}

.section:last-of-type{
  margin-bottom: 10px;
}
.vision-right{
  padding-top: 40px;   
}


#section-1-heading{
  margin-top: 80px;
}

/* =====================================================
   NUMBERED SECTIONS
===================================================== */
.section{
  display:flex;
  gap:20px;
  margin-bottom:40px;
}

.section-number{
  font-family:Allura, cursive;
  font-size:88px;
  color:var(--gold);
  line-height:0.9;
  min-width:80px;
  text-align:center;
  margin-right: 10px;
 
}

#section-number{
  font-family:Allura, cursive;
  font-size:88px;
  color:var(--gold);
  line-height:0.9;
  min-width:80px;
  text-align:center;
  margin-right: 10px;
  margin-top: 80px;
 
}

.section-content h3{
  font-family:'Playfair Display', serif;
  font-size:26px;
  color:var(--gold);
  margin:0 0 12px;
}

.section-content p{
  font-size:18px;
  line-height:1.6;
  margin:0 0 12px;
}

.section-content ul{
  padding-left:20px;
  margin:10px 0 0;
}

.section-content li{
  margin-bottom:8px;
  font-size:18px;
}
.mission-logo{
  max-width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
   FULL WIDTH BLOCKS
===================================================== */
.block{
  padding:70px 50px;
}

.block.burgundy{
  background:var(--burgundy);
  color:#fff;
}

.block.cream{
  background:var(--cream);
}

.block h3{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:18px;
}

.block p{
  max-width:900px;
  font-size:18px;
  line-height:1.7;
}

/* =====================================================
   DECORATIVE ELEMENT
===================================================== */
.corner-script{
  position:absolute;
  bottom:20px;
  right:30px;
  font-family:Allura, cursive;
  font-size:80px;
  color:var(--gold);
  opacity:.8;
}

/* =====================================================
   VISION SECTION – DESKTOP SPLIT
===================================================== */

.vision-wrap {
  display: flex;
  background: var(--burgundy);
  min-height: 50vh;
  margin-top: -80px;
}

/* Right-aligned cream panel */
.vision-right {
  width: 55%;
  margin-left: auto;
  padding: 80px 60px;
}

/* Keep text readable */
.vision-right p {
  max-width: 800px;
}

/* =====================================================
   MOBILE – STACK NORMALLY
===================================================== */

@media (max-width: 1000px) {
  .vision-wrap {
    flex-direction: column;
  }

  .vision-right {
    width: 100%;
    margin-left: 0;
  }
  .mission-logo{
    margin-top: 80px;
  }
 

}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1000px){
  .hero{flex-direction:column}
  .hero-left,.hero-right{width:100%}
  .hero-title{font-size:54px}
  .hero-title span{font-size:48px}
  .section-number{font-size:64px}

 
}

@media(max-width:600px){
  .hero-left{padding:40px 20px}
  .hero-right{padding:30px 20px}
  .hero-script{font-size:32px}

.section-number{
  font-family:Allura, cursive;
  font-size:88px;
  color:var(--gold);
  line-height:0.9;
  min-width:80px;
  text-align:center;
  
  
}
}

@media (max-width: 900px) {
  #section-number {
    font-family: Allura, cursive;
    font-size: 88px;
    color: var(--gold);
    line-height: 0.9;
    min-width: 80px;
    text-align: center;
    margin-right: 10px;
     margin-top: -9px;
  }

  #section-1-heading{
  margin-top: 0
}
}

@media (max-width: 600px) {
  #section-number {
    font-family: Allura, cursive;
    font-size: 88px;
    color: var(--gold);
    line-height: 0.9;
    min-width: 80px;
    text-align: center;
    margin-right: 10px;
    margin-top: -9px;
  }

#section-1-heading{
  margin-top: 0
}
}


@media (min-width: 901px) {
  .hero-left {
    padding-top: 0;
    padding-bottom: 0;
     margin-top: -500px;
  }
 
  
}

