/* =========================
   Global Styles
   ========================= */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Ovo';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/ovo-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =========================
   Utility Classes
   ========================= */

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }

/* Text colors */
.text-light { color: whitesmoke; }
.text-mid { color: #9f9f9f; }
.text-dark { color: #3f3f3f; }
.text-gold { color: #e8b843; }
.text-primary { color: #1b2c6c; }

/* Background colors */
.bg-light-blue { background-color: #678fe3; }
.bg-dark-blue { background-color: #1b2c6c; }

/* Flex helpers */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* Width / size helpers */
.max-w-975 {
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
}

/* Image constraint */
.img-contain {
    width: auto;
    max-height: 50vh;
}

/* Spacing helpers */
.mt-1 { margin-top: 0.75rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1.5rem; }

/* Additional helpers */
.font-bold { font-weight: bold; }
.no-marpad { margin: 0; padding: 0; }

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, p, a, button, ul, li {
    margin: 0;
    padding: 0;
    text-decoration: none;
    z-index: 2;
}

a, li {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

nav {
    width: 100%;
    height: auto;
    background-color: #1b2c6c;
    box-shadow: 0px 2px 10px -1px gray;
    position: fixed;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    min-height: 60px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding-top: 5px;
    padding-bottom: 5px;
}

nav li:hover {
    background-color: #13235d;
}

nav a {
    font-size: 15px;
    height: 100%;
    padding: 10px 30px;
    color: whitesmoke;
    display: flex;
    align-items: center;
}

nav li:last-child {
    margin-left: auto;
}

.sidebar li:last-child {
    margin-left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    width: 320px;
    z-index: 10;
    background-color: #1b2c6c;
    backdrop-filter: blur(10px);
    box-shadow: 2px 0px 15px -1px gray;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    display: inline-flex;
    width: auto;
    justify-content: center;
}

nav ul svg {
    fill: whitesmoke;
    transition: all 0.2s ease;
}

.this-page {
    background-color: #13235d;
}

nav li.dropdown {
    position: relative;
}

nav li.dropdown .dropdown-menu {
    display: none;
    position: absolute;       
    top: 100%;                
    left: 0;
    background-color: #1b2c6c;
    list-style: none;
    padding: 0;
    min-width: 150px;
    box-shadow: 0px 2px 5px -1px gray;
    z-index: 20;
}

nav li.dropdown .dropdown-menu li {
    width: 100%;
}

nav li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: whitesmoke;
}

nav li.dropdown .dropdown-menu li:hover {
    background-color: #13235d;
}

nav li.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 1220px) {
    .hide-on-mobile {
        display: none;
    }
}

@media (max-width: 500px) {
    .sidebar {
        width: 100%;
    }
}

@media (min-width: 1220px) {
    .hide-on-pc {
        display: none;
    }
}

.title {
    font-family: 'Ovo', serif;
    color: #e8b843;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #FFFFFF, #1b2c6c, #1b2c6c);
}

.hero-container p {
    color: white;
    margin: 1rem;
}
.register-button {
    margin: 2rem auto;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
    width: fit-content;
    justify-self: center;
    transition: all 0.4s ease;
}

.register-button a {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem; 
    font-size: 25px;
    font-weight: 300;
    transition: all 0.4s ease;
}

.register-button:hover {
    background-color: #FFFFFF;
}

.register-button:hover a {
    color: #1b2c6c;
}

h1 {
    position: relative;
    font-family: 'Ovo', serif;
    font-weight: 250;
    font-size: clamp(45px, 6vw, 75px);
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
}

a {
    cursor: pointer;
}

.sect-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 66.7vh;
}

ol {
    font-size: 18px;  
}

li::marker {
    font-size: 18px;
    color: #9f9f9f;
}

.sect {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 975px;
    /* padding: 70px 140px; */
    padding: 70px;
    margin: 0 auto;
}

.first-sect-container {
    padding-top: 90px;
    padding-bottom: 6rem;
}

h2 {
    margin-bottom: 2rem;
    font-family: 'Ovo', serif;
    font-size: 60px;
    font-weight: 300;
    color: #1b2c6c;
    text-align: center;
}

h3 {
    margin: 1.5rem;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
}

.sect-flex {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 975px;
}

.card-grid {
    display: grid;
    gap: 3rem;
    width: 100%;
    max-width: 975px;
    justify-content: center;
    align-items: stretch;
    margin: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.card-titles {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

.sect a{
    cursor: pointer;
    color:#e8b843;
}

.sect a:hover {
    color: #b8891f;
}

.flex-spacer {
    flex-grow: 1;
}

.sub-sect-title {
    margin: 0.25rem 0;
    font-size: 25px;
    color: #3f3f3f;
}

.sub-sect-title a {
    color: #3f3f3f;
}

.sub-sect-title a:hover {
    color: #e8b843;
}

.sub-sect-image-container {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-sect-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sub-sect-text {
    margin-bottom: auto;
}

.section-divider {
    border: none;
    border-top: 1px solid #9f9f9f;
    width: 90%;
    margin: 2rem auto;
}

.hotel-button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.hotel-button {
    border: 2px solid #FFFFFF;
    border-radius: 3px;
    transition: all 0.4s ease;
    color: white;
    background-color: transparent;
    text-align: center;
    width: fit-content;
}

.hotel-button:nth-child(1) {
    justify-self: end;
}

.hotel-button:nth-child(2) {
    justify-self: start;
}

.hotel-button a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 22px;
    font-weight: 300;
    color: inherit;
    line-height: 1.25;
}

.hotel-button:hover {
    background-color: #FFFFFF;
    color: #1b2c6c;
}

.hotel-button:hover a {
    color: #1b2c6c;
}

.airbnb {
    margin: 1rem;
}

.video-container {
    width: 100%;
    max-width: 750px;
    margin: 2rem 0;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}

.mail-link {
    color: #e8b843;
    font-weight: 500;
    transition: all 0.4s ease;
}

.mail-link:hover {
    color: whitesmoke;
}

/* =========================
   Tablet Layout
   ========================= */

@media (max-width: 1000px) {

    .sect {
        padding: 60px 80px;
    }

    .sect-flex {
        gap: 2.5rem;
    }

    .sub-sect-flex {
        max-width: 420px;
    }

}


/* =========================
   Mobile Layout
   ========================= */

@media (max-width: 750px) {

    .sect {
        padding: 50px 30px;
    }

    .sect-container {
        min-height: auto;
    }

    .hotel-button-row {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hotel-button:nth-child(1),
    .hotel-button:nth-child(2) {
        justify-self: center;
    }   

    .hotel-button {
        width: 100%;
        max-width: 320px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .sect-image {
        max-width: 100%;
        height: auto;
    }

    .sect-flex {
        flex-direction: column;
        align-items: center;
    }

    .sub-sect-flex {
        width: 100%;
        max-width: 500px;
    }

    .sub-sect-image-container {
        height: 260px;
    }

    .card {
        margin-top: 1.5rem;
    }

    hr {
        max-width: 80px;
    }

}


/* =========================
   Small Phone Layout
   ========================= */

@media (max-width: 500px) {

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 38px;
    }

    p {
        font-size: 20px;
    }

    .sect {
        padding: 40px 20px;
    }

}