:root {
    --clr-primary: #0072BB;
    --clr-primary-light: #c7edfc;
    --clr-secondary: #F5ECD0;
    --clr-secondary-light: #F4F0E7;
    --clr-tertiary: #3e3d3d;

    --ff-base: "Raleway", sans-serif;
    --ff-accent: 'Arial';

    --fs-100: clamp(0.78rem, calc(0.77rem + 0.03vw), 0.80rem);
    --fs-200: clamp(0.94rem, calc(0.92rem + 0.11vw), 1.00rem);
    --fs-300: clamp(1.13rem, calc(1.08rem + 0.22vw), 1.25rem);
    --fs-400: clamp(1.35rem, calc(1.28rem + 0.37vw), 1.56rem);
    --fs-500: clamp(1.62rem, calc(1.50rem + 0.58vw), 1.95rem);
    --fs-600: clamp(1.94rem, calc(1.77rem + 0.87vw), 2.44rem);
    --fs-700: clamp(2.33rem, calc(2.08rem + 1.25vw), 3.05rem);
    --fs-800: clamp(2.80rem, calc(2.45rem + 1.77vw), 3.82rem);
}


*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--ff-base);
    font-size: var(--fs-200);
    color: var(--clr-tertiary);
    font-weight: 400;
    line-height: 1.6;
}

body {
    font-family: var(--ff-base);
    font-size: var(--fs-200);
    color: var(--clr-tertiary);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    line-height: 1;
    /*text-wrap: balance;*/
    font-weight: bold;
}

h1 {
    font-size: var(--fs-800);
    color: #FFF;
}

h2 {
    font-size: var(--fs-700);
    color: var(--clr-tertiary);
}

h3 {
    font-size: var(--fs-600);
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h4 {
    font-size: var(--fs-400);
    line-height: 1.3;
}

h5 {
    font-size: var(--fs-400);
    font-weight: 400;
    line-height: 1.2;
}

h6 {
    font-size: var(--fs-200);
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
}

p {
    margin: 1rem 0;
}

a {
    color: var(--clr-primary);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.btn-main, .wufoo input.btTxt{
    display: inline-block;
    border-radius: 20px;
    padding: 1rem 3rem;
    background-color: var(--clr-primary);
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: var(--fs-200);
    font-weight: 700;
    transition: background-color 0.3s ease;
    margin: 1.5rem 0;
    cursor: pointer;
    border: 2px solid var(--clr-primary);
}

.btn-main:hover, .wufoo input.btTxt:hover{
    background-color: #FFF;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

/*=============== HEADER & NAVIGATION ===============*/

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    flex-direction: column;
    position: absolute;
    width: 100%;
}

.logo{
    width: 400px;
    margin: 0 auto 0 auto;
}

.header-btn {
    position: absolute;
    right: 20px;
    top: 0;
}

.hero {
    background: url('/img/hero.jpg') no-repeat top center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    color: #FFF;
}

.sub-hero {
    background: url('/img/hero.jpg') no-repeat top center;
    width: 100%;
    height: 600px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    color: #FFF;
    margin-bottom: 2rem;
}

.arrow-down {
    width: 50px;
}

@keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px); /* Adjust the value to control the float height */
    }
  }
  
  .arrow-down {
    animation: floatUpDown 2s ease-in-out infinite; /* Adjust the timing as needed */
  }
  

footer {
    background-color: var(--clr-secondary);
    width: 100%;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
}

.footer-logo {
    width: 400px;
}

/*=============== STEP CARDS ===============*/

.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: auto;
    padding: 5rem 1rem 3rem 1rem;
}

.step-card{
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--clr-secondary);
    padding: 0 0 2rem 0;
}

.step-card-title {
    background-color: var(--clr-primary);
    color: #FFF;
    font-weight: 800;
    padding: .5rem;
}

.step-card-image{
    height: 100px;
    margin-top: 1rem;
}

.step-card img{
    height: 85px;
}

.step-card-text {
    padding: 0 1rem;
}

.step-card-text p {
    margin: 0;
    font-weight: 600;
}

/*=============== LAYOUT UTILITIES ===============*/

/* .container {
	max-width: 1500px;
	margin: 0 auto;
    padding: 0 1rem;
} */

.container p{
    margin: 0;
}

.container-sm {
    max-width: 1200px;
	margin: 0 auto;
    padding: 0 1rem;
}

.my-row {
	display: flex;
	flex-direction: row;
    gap: 5rem;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
}

.my-col {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
}

.double-col {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
}

.txt-center {
    text-align: center;
}

.venue-info p.txt-small {
    font-size: var(--fs-300);
}


.lead-txt{
    font-size: var(--fs-300);
    padding: 4rem 0;
}

.info-txt{
    padding: 0 1rem 4rem 1rem;
    text-align: center;
}

.rental-times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: var(--fs-400);
}

.times {
    text-align: left;
}

.financials {
    background: var(--clr-primary-light);
    padding: 2rem;
    margin: 3rem 0;
}

@media screen and (min-width: 768px) {
	.col {
		flex: 1;
		padding: 0;
	}

	.row .col:first-child {
		padding-left: 0;
	}

	.row .col:last-child {
		padding-right: 0;
	}

	.double-col {
		flex: 2;
	}
}

.columns-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.columns-three > * {
    width: 100%;
    padding: 1rem;
}

.columns-three > :nth-child(2){
    text-align: center;
}

.columns-three > :last-child{
    text-align: right;
}

@media (min-width: 992px) {
    .columns-three > * {
        width:calc(100% / 3);
    }
}

@media (max-width: 768px) {
    .header-btn {
        position: relative;
        right: 0;
        top: 0;
    }
    .rental-times {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

/*=============== VENUES ====================*/

.venue-wrapper {
    max-width: 1500px;
    margin-inline: auto;
}

.venue-section {
    display: flex;
    flex-direction: row;
    /*flex-wrap: wrap;*/
    gap: 3rem;
    margin: 3rem auto;
    border-top: 1px solid var(--clr-secondary);
    padding: 4rem 1rem;
}
.venue-section > .sidebar {
    flex: 0 0 650px;
   /* flex-basis: 100%; */
}

.venue-section > .main {
    flex-grow: 1; /* Take up the remaining space */
}

.venue-section p, .venue-info p {
    margin: .5rem 0;
}

.venue-section p, .venue-section li, .venue-info p, .venue-info li {
    font-size: var(--fs-400);
}

.venue-section span, .venue-info span {
    font-weight: 600;
}


@media screen and (max-width: 1200px){
    .venue-section > .sidebar {
        flex: 0 0 500px;
    }
}

@media screen and (max-width: 1000px) {
    .venue-section {
        flex-direction: column-reverse;
    }
    .venue-section > :first-child,
    .venue-section > :last-child {
        flex-basis: auto; /* Reset flex-basis for smaller screens */
    }
}


/*=============== CONTACT FORM ===============*/

.contact-wrap{
    position: relative;
	width: 100%;
    height: 100%;
	background: url('/img/modern-suds-hero-cover.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 1rem;
}

.contact-wrap::after{
        content: '';
        z-index: 1;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
}

.contact-container {
    position: relative;
	max-width: 900px;
	margin: 0 auto;
    padding: 3rem 1rem;
    z-index: 99;
}

.contact-container h2{
    text-align: center;
    margin-bottom: 4rem;
    color: #FFF;
}


.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(110,148,177, 0.3);
    border: none;
    font-family: var(--ff-base);
    color: var(--clr-primary);
}

.field-100{
    grid-column: 1/3;
}

.wufoo label.desc{
    font-family:'Poppins', sans-serif;
    font-size: var(--fs-200);
}

.wufoo input.text, .wufoo textarea.textarea {
    padding: 0.7rem .2rem;
}

.wufoo li {
    margin: 1rem 0;
}

.form-group input[type='checkbox'] {
    width: auto;
}

.ee-cform a {
    color: var(--clr-primary) !important;
}

.cal-col-5 {display: none; } /* hide the all day toggle on front-end */

.form-group label span {
    color: red;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 630px;
    }
}

select option[value="6"], select option[value="7"] {
    display: none;
}

/*=============== CALENDAR ===============*/

.gray-out-date {
    background-color: lightgray;
}