:root{
--theme-color: #B1191A;
--secondary-color:#FEEC42;
--accent-color:#F4D8A8;

--background-color:#FFF8EF;

--mono-color:#FFFFFF;
--ohno-color:#2D221B;

--text-light-color:#5B4A3D;

--button-color:#B54424;
--button-hover-color:#91371D;

--success-color:#4E7A4D;

}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--theme-color) var(--background-color);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: var(--background-color);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
    border: 4px solid var(--background-color);
  }

/* ==== Fonts ==== */
h1 {font-family: 'Libre Baskerville', serif; font-size: 3.4rem}

h2, h3, h4, h5, h6, button {font-family: 'Libre Baskerville', serif;}
p, a, footer {font-family: 'Open Sans', sans-serif; font-size: 1.6rem}


a {text-align: center;}
/* ==== Background ==== */
body {
    background-color: var(--background-color);
}

/* ==== Misc. ==== */
hr {
    width: 25%;
    border-color: var(--theme-color);
}

.dropdown {
    float: left;
    overflow: hidden;

}

#navbarSection {
    position: sticky;
    top: 0;
    opacity: 0.9;
    z-index: 10;
}

#navBarCont {
    transition: all 0.4s ease;
}

#navBarCont.scrolled {
    background-color: var(--mono-color);
    border-radius: 0px 0px 50px 50px;
    border: 2px solid var(--button-hover-color);
    border-top: none;
}


.nav-bar-container {
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    width: 100%;
}



.left-side-container {
    width: 20%;
}

.left-side-container .logo {
    height: 160px;
    width: 260px;
    display: flex;
    align-items: left;
}

.dropdown svg {
    transition: transform 0.3s ease;
}

.dropdown-content {
    visibility: hidden; 
    opacity: 0; 
    position: absolute;
    background-color: var(--ohno-color);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    padding: 1rem;
    border-radius: 2px;
    margin: 1rem 0.1rem 0rem 0rem;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-content li {
    float: none; 
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 1.2rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover svg {
    transform: rotate(180deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 20px;
    
}

.nav-links a {
    color: var(--ohno-color);
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    background-color: transparent;
    display: block;
    transition: all 0.3s ease-in-out;

}
.nav-links li:nth-child(even) a:hover {
    transform: scale(1.12) rotate(3deg);
    background-color: var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;

    color: var(--theme-color);
}

.nav-links li:nth-child(odd) a:hover {
    transform: scale(1.12) rotate(-3deg);
    background-color: var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;

    color: var(--theme-color);
}
/* .nav-links a:hover {
    background-color: var(--accent-color);
    border-radius: 5px;
    overflow: hidden;

    color: var(--theme-color);
    transform: scale(1.1) rotate(5deg)

} */

.hero-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

/* .hero-container::before {
    content: '';
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.527)
} */

.hero-bg-video {
    position: absolute; 
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-img {
    position: relative; 
    object-fit: cover;
    z-index: -1; 
    height: 100%;
    width: 100%;
    margin: 7rem auto 0px auto; 
    transform: scale(.95);
}

.hero-elements {
    z-index: 2;
    color: var(--mono-color);
    position: relative; 
    display: flex;
    line-height: 1.8rem;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}


.hero-text span, blockquote span{
    color: var(--theme-color)
}

/* ==== Custom Buttons ==== */
.mono-btn {
    background-color: var(--accent-color);
    border: 2px solid var(--ohno-color); 
    border-radius: 10px; 
    position: relative;
    width: 270px; 
    margin: 0 auto;
    height: 53px; 
    font-weight: 300;
    color: var(--ohno-color);
    text-align: center;
    text-decoration: none;
    letter-spacing: 2.4px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    z-index: 2;
}

.mono-btn:hover {
    background-color: var(--ohno-color);
    border-color: var(--accent-color);
    color: var(--mono-color);
}

.ohno-btn {
    background-color: var(--theme-color);
    border: 2px solid var(--button-color); 
    border-radius: 10px; 
    position: relative;
    width: 270px; 
    margin: 0 auto;
    height: 53px; 
    font-weight: 300;
    color: var(--mono-color);
    text-align: center;
    text-decoration: none;
    letter-spacing: 2.4px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.ohno-btn:hover{
    background-color: var(--background-color);
    border-color: var(--button-hover-color);
    color: var(--ohno-color);
}

/* ==== Promo break Section ==== */
#promoSection {
    position: relative;
    margin-top: 2rem;
    background-color: var(--accent-color);
    border-radius: 25px;
    border-top: 0px;
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.promo-container {
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
}

.l-sided-food-img, .r-sided-food-img {
    flex: 1; 
}

.l-sided-food-img{
    transform:translateY(-20px);
}

.r-sided-food-img{
    transform:translateY(20px);
}

.l-sided-food-img img, .r-sided-food-img img {
    width: 100%; 
    height: 600px; 
    object-fit: cover; 
    border-radius: 15px;
    box-shadow:0 15px 35px rgba(0, 0, 0, 0.397);

    transition:transform .35s ease;
}

.l-sided-food-img img:hover,
.r-sided-food-img img:hover{
    transform:scale(1.04);
}

.promo-text{
    flex:1.3;

    text-align:center;

    padding:0 2rem;
}

.promo-text h2{
    color:var(--theme-color);

    margin-bottom:1rem;

    font-size:2.7rem;

    line-height:1.3;
}

.promo-text p{
    color:var(--text-light);

    line-height:1.8;

    margin-bottom:2rem;
}

/* ==== Location/Map Section ==== */
#locationSection { 
    margin-top: 2rem; 
}

.location-container {
    display: flex; 
    position: relative; 
    justify-content: center;
    align-items: center;
    width: 100%; 
    flex-direction: row;
    height: 700px;
    padding: 1rem 0rem;
    gap: 2rem; 
}

.contact-wrap {
    flex-direction: column;
    display: flex;
    width: 50%; 
    position: relative;
    justify-content: left; 
    align-items: center; 
    border-radius: 15px;
    border: 2px solid var(--theme-color);
    padding: 2.5rem; 
}

.cw-address-title {
    color: var(--ohno-color);
    font-size: 1.45rem;
    margin-bottom: 1.1rem; 
}

.cw-hours {
    flex-direction: column;
    display: flex; 
    justify-content: center;
}

.hours {
    flex-direction: column;
    display: flex; 
    gap: 0.80rem;
}

.hours-row, .phone-number {
    flex-direction: row;
    display: flex; 
    justify-content: center;
}

.hours-row span, .title span {
    color: var(--theme-color);
}

.day, .title { 
    font-weight: 500; 
}

.time {
    font-weight: 400; 
    text-align: right; 
}

.day, .time {
    margin: 0.85rem;
}

.title, .phone-number {
    display: inline-flex; 
    gap: 6px; 
}

#map { 
    height: 500px; 
    width: 100%;
}

/* ==== Banner Section ==== */
#bannerSection {
    position: relative;
    margin-top: 2rem;
    background-color: var(--theme-color);
    border-radius: 25px 25px 0 0;
    padding: 4rem;
}

.banner-container {
    display: flex; 
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}


.follow-wrap {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
    position: relative;
    gap: 2rem; 

}

.fw-text {
    flex-wrap: wrap;
    display: flex; 
    width: 50%; 
    gap: 1rem;
}

.fw-text p {
    font-size: 2rem; 
    font-weight: 500; 
    color: var(--mono-color);
    margin: 0; 
    line-height: 1;
    letter-spacing: 0%;
}

.follow-wrap button {
    text-transform: uppercase;
}

/* ==== Footer Section ==== */
#boundaryBreak {
    margin-top: 2rem; 
    display: block; 
    width: 100%; 
    max-width: 100%; 
    height: 10px; 
    background-color: var(--theme-color);
    overflow: hidden; 
    border-radius: 2px;
}

#footerSection {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    position: relative; 
}

.footer-container {
    display: flex; 
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden; 
    position: relative; 
    width: 100%; 
    height: 400px; 
    padding: 1rem 0rem; 
    background: black;
    border-radius: 0px 0px 25px 25px; 
}

.footer-container p {
    color: white;
}

.globalWrap {
    display: flex; 
    flex-direction: column; 
    text-align: left; 
}

.ft-logo-wrap {
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    display: flex; 
    width: 100%; 
}


.ft-logo-wrap .logo {
    height: 260px;
    width: 260px;
    display: flex;
}

.social-media {
    gap: 2rem; 
    display: flex; 
    flex-direction: row; 
    justify-content: space-evenly;
    align-items: center;
}

.social-media svg {
    width: 30px;
    height: 30px; 
    transition: all .3s ease;
    cursor: pointer;
    fill: var(--theme-color);
}

.social-media svg:hover {
    transform: scale(1.2);
    filter: drop-shadow(1px 1px 7px var(--theme-color));
}

.footerWrapping {
    flex-direction: column; 
    align-items: start;
    display: flex; 
    width: 100%; 
    gap: 0.3rem; 
}

.ft-body {
    display: flex; 
    flex-direction: column; 
    gap: 0.6rem;
    margin: 0; 
    padding: 0;
    list-style: none;
}

h4 {
    color: var(--mono-color);
    font-weight: 700; 
    text-transform: uppercase;}

li a, li p {
    text-decoration: none; 
    color: var(--background-color);
    font-size: 22px; 
    padding: 0; 
    margin: 0; 
    font-weight: 200;
    transition: all 0.3s ease-in-out;
    display: block; 
    text-align: start;
}

li a:hover {
    filter: drop-shadow(0 0 10px var(--secondary-color));
    transform: scale(1.1);

}

.ft-btn {
    margin: 0;
}

.copywrite {
    position: absolute; 
    bottom: 10px; 
    left: 0; 
    width: 100%; 
    text-align: center;
}

.copywrite p, .copywrite a {
    font-size: 0.8rem; 
    color: var(--mono-color);
    line-height: 0.5;
    text-decoration: none; ;
    letter-spacing: 1.2px;
}

.copywrite a {
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
    display: inline-block;

}

.copywrite a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px whitesmoke;
    transform: scale(1.03);
}

/* ==== ABOUT ME PAGE ==== */
/* ==== Hero Page ==== */
#aboutheroSection {
    width: 100%; 
    padding-top: 10rem; 
}

.abouthero-container {
    width: 100%; 
    height: 700px; 
    position: relative;
    display: flex; 
    flex-direction: column;
}

.about-bg-img {
    height: 100%; 
    width: 100%;
}

.about-bg-img img {
    height: 100%; 
    width: 100%;
    border-radius: 20px;
    object-fit: cover; 
    display: block; 
    
}

.abouthero-content {
    position: absolute; 
    top: 50%; 
    right: 35%; 
    left: 35%; 
    z-index: 3; 
    transform: translateY(-50%);
    text-align: center;
}

.abouthero-content h1 {
    font-weight: bold;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px, rgba(0, 0, 0, 0.6) -1px -1px 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.8rem;
    color: var(---color);
}

.abouthero-content::before {
    content: "";
    position: absolute;

    top: -35px;
    right: -60px;
    bottom: -35px;
    left: -60px;

    background-image: url("../assets/images/white-border.avif");
    background-size: 100% 100%;
    background-repeat: no-repeat;

    z-index: -1;
}

.abouthero-container::before {
    content: "";
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.089);
    border-radius: 20px; 
}

.about-hero-btns {
    position: relative; 
    display: flex; 
    flex-direction: row;;
}


.about-hero-btns .mono-btn, 
.about-hero-btns .ohno-btn {
    width: 40%;
    box-shadow: 0 1px 4px #0009;
}