html{
    scroll-behavior: smooth;
}
/* Define Vars */
:root{
    --btnCol: #902923;
    --btnHoverCol: #D3514A;
    --navColor: #1E1C21;
    --navColorHover: #3C3842;
    --sideBarBgColor: #1e1b20ee;
    --mainTextColor: #fff;
    --mainBg: #1e1c21;
    --secondaryBg: #121320;
    /* --gradientBgTopBottom: linear-gradient(0deg, var(--secondaryBg) 0%, var(--mainBg) 33%, var(--mainBg) 66%, var(--secondaryBg) 100%);
    --gradientBgTop: linear-gradient(0deg, var(--mainBg) 33%, var(--secondaryBg) 100%);
    --gradientBgBottom: linear-gradient(0deg, var(--secondaryBg) 0%, var(--mainBg) 66%);
    --gradientBgMiddle: linear-gradient(0deg, var(--mainBg) 0%, var(--secondaryBg) 33%, var(--secondaryBg) 66%, var(--mainBg) 100%); */
    --overlayColor: #00000077;
}

/* Define Fonts */

@font-face{
    font-family: 'Work Sans';
    src: url("../resources/fonts/Work_Sans/WorkSans-VariableFont_wght.ttf");
}
@font-face{
    font-family: 'Petit Formal Script';
    src: url("../resources/fonts/Petit_Formal_Script/PetitFormalScript-Regular.ttf");
}

/* Global Rules */
*{padding: 0; margin: 0;}
body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--mainBg);
    color: var(--mainTextColor);
}
iframe{border: none;}
h1,h2 {
    font-size: 3em;
    margin-bottom: 0.3em;
    font-family: "Petit Formal Script", cursive;
    font-weight: 900;
}
@media screen and (max-width: 500px){
    h2,h2{
        font-size: 2em;
    }
}
p:not(:last-child){
    margin-bottom: 0.7em;
}

/* Custom Classes */
.text-align-center{
    text-align: center;
}
@media screen and (max-width: 1000px){
    .text-align-center-mobile{
        text-align: center;
    }
}
.text-align-right{
    text-align: right;
}

.align-center{
    justify-content: center;
    justify-self: center;
    align-items: center;
    align-self: center;
}
@media screen and (max-width: 1000px){
    .align-center-mobile{
        justify-content: center;
        justify-self: center;
        align-items: center;
        align-self: center;
    }
}
.align-right{
    justify-content: flex-end;
}

@media screen and (max-width: 1000px){
    .hide-mobile{
        display: none;
    }
}
@media screen and (min-width: 1000px){
    .hide-desktop{
        display: none;
    }
}

.anchor{
    z-index:-2;
    position: relative;
    top: -5em;
}

.disabled{
    pointer-events: none;
}

/* Stripe Styling */
.stripe{
    padding-top: 2em;
    padding-bottom: 2em;
}

/* Columns Styling */
.columnsContainer{
    position: relative;
    margin: 0 auto;
    width: 60%;
}

/* 50%/50% Columns */
.columnsContainer.fifty-fifty{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 1em;
}
@media screen and (max-width: 1000px){
    .columnsContainer.fifty-fifty{
        grid-template-columns: repeat(1,1fr);
    }
}
/* Reverse row ordering for fifty-fifty on mobile */
@media screen and (max-width: 1000px){
    .first-grid-item-mobile{
        grid-column: 1;
        grid-row: 1;
    }
}

.column{
    position: relative;
    width: 100%;
}

/* Rows Styling */
.rowsContainer{
    display: grid;
    grid-template-rows: auto;
    margin: 0 auto;
}
.row:not(:last-child){
    margin-bottom: 1em;
}

/* iFrame Styling */
.iframeWrapper{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (height/width) */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.iframeWrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Navigation */
nav{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
nav ul{
    background-color: var(--navColor);
    z-index: 997;
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
nav a{
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 1em;
}
nav a:not(.navLogo):hover{
    background-color: var(--navColorHover);
}
nav ul:not(.sideBar) li:first-child{
    margin-right: auto;
    margin-left: 1em;
    font-family: "Petit Formal Script", cursive;
    display: none;
}

/* Side Bar Styling */
.sideBarOverlay{
    z-index: 998;
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}
.sideBar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: var(--sideBarBgColor);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
}
.sideBar li{
    width: 100%;
}
.sideBar a{
    padding: 1em 0 1em 0;
    width: 100%;
}

@media screen and (max-width: 800px){
    .nav-hide-mobile{
        display: none;
    }
}
@media screen and (min-width: 800px){
    .nav-hide-desktop{
        display: none;
    }
}
@media screen and (max-width: 500px){
    .sideBar{
        width: 100%;
    }
}

/* Sticky class for Nav */
.sticky{
    position: fixed;
    top: 0;
    z-index: 999;
}

/* Button Styling */
.buttons {
    display: flex;
    gap: 1em;
    font-weight: 600;
}
.btn {
    padding: 1em 2em;
    font-size: 1em;
    background-color: var(--btnCol);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}
.btn:hover {
    background-color: var(--btnHoverCol);
    color: #000;
}

footer{
    width: 99vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -10px 5px rgba(0, 0, 0, 0.2);
}
footer ul{
    list-style-type: none;
    padding: 1em;
}
footer ul li a{
    color: #fff;
    text-decoration: none;
}

.footerAddress li:not(:last-child){
    padding-bottom: 0.5em;
}
.socialIcons ul{
    display: grid;
    grid-template-columns: repeat(6, auto);
}
@media screen and (max-width: 600px){
    .socialIcons ul{
        grid-template-columns: repeat(3, auto);
    }
}
@media screen and (max-width: 400px){
    .socialIcons ul{
        grid-template-columns: repeat(2, auto);
    }
}
.socialIcons ul li a{
    display: block;
    padding: 1em;
    border-radius: 50%;
    text-align: center;
}
.socialIcons ul li a:hover{
    /* background: var(--navColorHover); */
    box-shadow: inset 0 0 20px #000;
}