/* General Body and Typography */
body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Sans sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    background: #0e1015;
}

.logo {
    max-width: 300px;
}

h1, h2, h3, h4, h5 {
    font-size: 32px;
    margin: auto;
    padding: initial;
}

a {
    color: #006699;
    text-shadow: 0 0 1px #0d0d0d7a;
    text-decoration: underline;
}

/* Active State */
.active {
    border-bottom: 4px solid #e1c58e !important;
}

/* Info Section */
#infoot {
    max-width: 1600px;
    margin: auto;
}

#infoot pre {
    font-family: Raleway, sans-serif;
}

/* Footer */
#footer {
    padding-top: 50px;
    color: #fff;
    z-index: 99;
    font-size: 14px;
    background: #2c2d2f;
}

#footer a {
    color: white;
}

/* Top Bar */
#topBar {
    width: 100%;
    background-color: #0b0b0b;
    z-index: 10001;
}

#banner {
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
}

div#topSocials {
    color: white;
    text-decoration: none;
    text-align: right;
}

div#topSocials a {
    }

/* Three Footer Section */
#threeFooter {
    text-align: center;
    margin: auto;
}

#threeFooter div {
    width: 31%;
    overflow: hidden;
    padding-bottom: 17px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    z-index: 100;
    position: relative;
}

#threeFooter h3 {
    color: #ffffff;
    text-transform: capitalize;
}

#threeFooter div:first-child {
    margin-left: 0 !important;
    text-align: left;
    float: left;
}

#threeFooter div:last-child {
    margin-right: 0 !important;
    float: right;
    text-align: right;
}

#threeFooter ul {
    list-style: none;
    padding: 0;
}

#threeFooter li a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #585d69;
    padding: 7px;
    font-size: 12px;
    padding-right: 20px;
    text-transform: lowercase;
}

/* Misc Layout */
.textBoxes {
    position: relative;
    margin: auto;
}

.readingBit {
    padding-top: 1px;
    display: flow-root;
    margin: auto;
    margin-top: -1px;
}

/* Flexbox Utility */

.setStyle > div {
    max-width: 1400px;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
    margin: auto;
    flex: 1;
    display: flex;
}

.setStyle > div > div {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 2%;
    box-sizing: border-box;
    flex: 1;
}
div#bread {
    background: #efefef;
    padding: 10px;
}
/*BLog Section */

main.news {
    width: 100%;
    margin: auto;
}

.news section {
    border: 1px solid #d7d7d7;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    content-visibility: auto;
    margin-bottom: 20px;
}

img.blogIcon {
    float: left;
    margin-right: 30px;
    max-width: 200px;
}

#galBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

#galBoxes div {
    flex: 1 1 calc(20% - 10px); /* Adjust to control how many items per row */
    max-width: calc(20% - 10px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

#galBoxes img {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

#galBoxes div:hover {
    transform: translateY(-5px);
}

#galBoxes div:hover img {
    transform: scale(1.1);
}
.readingsSection {
    position: relative;
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0;
    overflow: hidden;
    color: #fff;
    background: rgba(0, 0, 0, .13);
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.readingsSection::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: #ffe454;
}

.readingsSection > .delement:first-child {
    padding: 28px 32px 24px;
    background: rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.readingsSection > .delement:first-child p {
    margin: 0;
}

.readingsSection > .delement:first-child p:first-child {
    margin-bottom: 14px;
}

.readingsSection > .delement:first-child b {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.readingsSection > .delement:first-child p:has(.goRed) {
    margin-bottom: 9px;
}

.readingsSection .goRed {
    display: inline-block;
    padding: 5px 10px;
    color: #1d477e;
    background: #ffe454;
    border-radius: 4px;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .03em;
}

.readingsSection .weedate:not(.goRed) {
    display: block;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}

.readingsSection > .delement:nth-child(2) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
    gap: 24px 30px;
    padding: 28px 32px 30px;
}

.readingsSection .quickdesc {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
}

.readingsSection > .delement:nth-child(2) > div:nth-child(2) {
    align-self: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, .07);
    border-radius: 5px;
}
.readingsSection pre {
    margin: 0;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: right;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.readingsSection > .delement:nth-child(2) > p {
    grid-column: 1 / -1;
    justify-self: end;
    margin: 0;
}

.readingsSection .ebutton {
    display: inline-block;
    padding: 11px 18px;
    color: #ffe454;
    background: #2482f0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.readingsSection .ebutton:hover {
    background: #126bd0;
    transform: translateY(-2px);
}

.readingsSection .ebutton:focus-visible {
    outline: 3px solid #ffe454;
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .readingsSection > .delement:first-child,
    .readingsSection > .delement:nth-child(2) {
        padding: 22px;
    }

    .readingsSection > .delement:first-child b {
        font-size: 23px;
    }

    .readingsSection > .delement:nth-child(2) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .readingsSection pre {
        text-align: left;
    }

    .readingsSection > .delement:nth-child(2) > p {
        grid-column: 1;
        justify-self: start;
    }
}

.setStyle.hero {
    color: #f5ebd8;
    overflow: hidden;
    background: #0d0f14;
}

.hero > .delement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    max-width: 1600px;
    min-height: 620px;
    margin: 0 auto;
}

.hero > .delement > div:first-child {
    padding: 70px 6% 80px 9%;
    position: relative;
    z-index: 1;
}

.hero #heroName {
    margin: 0 0 22px;
    color: #c9a86a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero #heroTitle {
    max-width: 680px;
    margin: 0 0 38px;
    color: #f5ebd8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.2vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero > .delement > div:first-child > p:has(a) {
    display: inline-block;
    margin: 0 12px 12px 0;
}

.hero .generalButtons,
.hero .generalButtonsDark {
    display: inline-block;
    padding: 15px 23px;
    border: 1px solid #c9a86a;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero .generalButtons {
    background: #c9a86a;
    color: #151515;
}

.hero .generalButtons:hover {
    background: #e1c58e;
    border-color: #e1c58e;
}

.hero .generalButtonsDark {
    background: transparent;
    color: #e1c58e;
}

.hero .generalButtonsDark:hover {
    background: #c9a86a;
    color: #151515;
}

.hero .generalButtons:focus-visible,
.hero .generalButtonsDark:focus-visible {
    outline: 2px solid #f5ebd8;
    outline-offset: 4px;
}

.hero > .delement > div:last-child {
    align-self: stretch;
    min-height: 620px;
}

.hero > .delement > div:last-child img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 800px) {
    .hero > .delement {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero > .delement > div:first-child {
        padding: 65px 7% 50px;
    }

    .hero #heroTitle {
        max-width: 620px;
        font-size: clamp(38px, 8vw, 58px);
    }

    .hero > .delement > div:last-child {
        min-height: 0;
        max-height: 650px;
        overflow: hidden;
    }

    .hero > .delement > div:last-child img {
        height: auto !important;
        object-fit: initial;
    }
}

@media (max-width: 480px) {
    .hero > .delement > div:first-child {
        padding: 48px 6% 36px;
    }

    .hero #heroTitle {
        font-size: clamp(34px, 10vw, 46px);
    }

    .hero > .delement > div:first-child > p:has(a) {
        display: block;
        margin: 0 0 12px;
    }

    .hero .generalButtons,
    .hero .generalButtonsDark {
        box-sizing: border-box;
        width: 100%;
        text-align: center;
    }
}

 
.setStyle.intro div {
    font-size: 43px;
}

.setStyle.introButtons div {
    text-align: center;
    font-size: 22px;
}

.setStyle.introButtons div 
 a {
    color: #ffffff;
    padding: 15px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    background: #c9a86a;
    text-decoration: none;
    max-width: 400px;
    display: block;
    text-transform: uppercase;
    font-weight: bolder;
    text-shadow: 0px -1px 1px black;
    box-shadow: 2px 2px 2px black;
}


.setStyle.videoBookings > div > div {
    text-align: center;
}

.worldGreatest {
    margin-top: 50px;
    background: #17191d;
    color: #f5ebd8;
    padding: 90px 24px;
}

.worldGreatest > .delement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    max-width: 1400px;
    margin: 0 auto;
}

.worldGreatest > .delement > div:first-child {
    /* max-width: 570px; */
}

.worldGreatest > .delement > div:first-child p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.65;
}

.worldGreatest > .delement > div:first-child p:first-child {
    margin-bottom: 30px;
}

.worldGreatest > .delement > div:first-child p:first-child b {
    display: block;
    color: #f5ebd8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.worldGreatest > .delement > div:first-child p:last-child {
    margin: 34px 0 0;
}

.worldGreatest .generalButtons {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 4px;
    background: #c9a86a;
    color: #151515;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}

.worldGreatest .generalButtons:hover {
    background: #e1c58e;
}

.worldGreatest > .delement > div:last-child {
    min-width: 0;
}

.worldGreatest > .delement > div:last-child img {
    display: block;
    width: 100% !important;
    height: auto !important;
    border: 1px solid rgba(201, 168, 106, .45);
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
    border-radius: 12px;
}

@media (max-width: 800px) {
    .worldGreatest {
        padding: 65px 6%;
    }

    .worldGreatest > .delement {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .worldGreatest > .delement > div:first-child {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .worldGreatest {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .worldGreatest > .delement > div:first-child p {
        font-size: 16px;
    }

    .worldGreatest > .delement > div:first-child p:first-child b {
        font-size: 36px;
    }
}

.forthcomingEvents {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    color: #f5ebd8;
}

.forthcomingEvents h2 {
    margin: 0 0 38px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.forthcomingEvent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 4px;
    border-top: 1px solid rgba(201, 168, 106, .35);
}

.forthcomingEvent:last-of-type {
    border-bottom: 1px solid rgba(201, 168, 106, .35);
}

.forthcomingEvent > div {
    min-width: 0;
}

.forthcomingEvent h3 {
    margin: 0 0 8px;
    color: #f5ebd8;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 600;
    line-height: 1.3;
}

.forthcomingEvent p {
    margin: 0;
    color: #d6c5a4;
    font-size: 16px;
    line-height: 1.5;
}

.forthcomingEvent > a {
    flex: 0 0 auto;
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid #c9a86a;
    border-radius: 4px;
    color: #e1c58e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}

.forthcomingEvent > a:hover {
    background: #c9a86a;
    color: #151515;
}

.forthcomingEvents .allEventsLink {
    display: table;
    margin: 36px auto 0;
    padding: 14px 24px;
    border-radius: 4px;
    background: #c9a86a;
    color: #151515;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}

.forthcomingEvents .allEventsLink:hover {
    background: #e1c58e;
}

.forthcomingEvents a:focus-visible {
    outline: 2px solid #f5ebd8;
    outline-offset: 4px;
}

@media (max-width: 650px) {
    .forthcomingEvents {
        padding: 55px 20px;
    }

    .forthcomingEvents h2 {
        margin-bottom: 28px;
        text-align: left;
    }

    .forthcomingEvent {
        display: block;
        padding: 24px 0;
    }

    .forthcomingEvent > a {
        margin-top: 18px;
    }
}