/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
    letter-spacing: 0.2px;
}

h1{
  font-family: Cinzel, serif;
  border-bottom: 1px solid black;
  font-size: 32px;
}
b{
color: black;
}

/* Base body setup */
body {
    font-family: "Libre Baskerville", Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
#header {
    height: 199px;
    background-color: #2C0D00; /* fallback */
    margin: 0px;
    padding:0px;
    width: 100%;
    background-image: url('/imgs/web/fullHeaderBKG.jpg?v=06');
    background-position: center top;  /* centers the image */
}
#headerContainer{
    height: 199px;
    width: 700px;
    margin: 0 auto; /* centers it */
}
#headerLogo{
  width: 700px;
  height: 141px;
  box-sizing: border-box;
  display: inline-block;
}
#headerMenu{
  display: inline-block;
  height: 58px;
  width: 800px;
  box-sizing: border-box;
  display: inline-block;
}


#headerMenu ul {
    list-style: none;
    margin: 0;
    margin-top: -8px;
    padding: 0;
    display: flex;
    align-items: center; /* vertical centering */
    height: 58px;        /* match your menu height */
}

#headerMenu li {
    margin: 0;
    padding: 0;
}

#headerMenu a {
    display: block;
    text-decoration: none;
    font-family: Cinzel, serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;

    padding: 10px 22px;     /* remove vertical padding */
    color: #f0e0b0;      /* slightly brighter default */
    text-shadow:
        0 1px 0 rgba(0,0,0,0.65),
        0 0 2px rgba(0,0,0,0.45);

    transition:
        color 0.2s ease,
        text-shadow 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

#headerMenu a:hover,
#headerMenu a:focus,
#headerMenu a.current {
    color: #fff2a8;  /* warmer yellow-white */

    text-shadow:
        0 1px 0 rgba(80,40,0,0.9),
        0 0 6px rgba(255,235,120,1),
        0 0 16px rgba(255,210,60,0.8),
        0 0 28px rgba(255,180,20,0.55);

    background: linear-gradient(
        to bottom,
        rgba(255,255,200,0.14),
        rgba(255,215,100,0.06)
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,200,0.4),
        inset 0 -1px 0 rgba(90,40,0,0.25);
    transform: translateY(-1px);
}



#leftside,
#rightside {
    flex: 1 1 0;
    min-width: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: repeat-y;   /* 🔑 important */
    min-height: 100vh;
}

/* your images */
#leftside {
    background-image: url('/imgs/web/leftBKG.jpg');
    background-position: right top;
}

#rightside {
    background-position: left top;
    background-image: url('/imgs/web/rightBKG.jpg');
}


#mainPage{
    display: flex;
    flex: 1;
    width: 100%;
    min-height: 500px;
  background-color: #FFFEFD;
}

/* Main content area */
#mainPageContainer {
   padding-top:30px;
    flex: 0 1 800px;
    width: 800px;
    max-width: 100%;
    min-width: 0;
    padding-bottom:60px;
}

/* Footer */
#footer {
    height: 140px;
    background-color: #2C0D00; /* fallback */
    margin: 0px;
    padding:0px;
    width: 100%;
    background-image: url('/imgs/web/fullHeaderBKG.jpg?v=06');
    background-position: center top;  /* centers the image */
    color: #fff;
    padding: 15px;
    text-align: center;
}


@media (max-width: 768px){
  .hide-on-mobile{
    display: none;
  }
  #headerContainer{
    width: 100%;
    height: auto;
  }
  #headerLogo, #headerLogo img{
    width: 100%;
    height: auto;
  }
  #headerMenu{
    max-width:100%;
  }
  #headerMenu ul{
    flex-wrap:wrap;
  }
}

