/* =========================
   Base / Variables
========================= */

:root {
    --color-white: #ffffff;
    --color-orange: #FF4800;
    --color-orange-dark: #D13B00;
    --color-dark: #0f172a;
    --color-black: #000000;
    --color-gray-placeholder: #6b7280;

    --border-white: 1.5px solid var(--color-white);
    --border-black: 2px solid var(--color-black);

    --radius-sm: 4px;
    --radius-pill: 100px;
    --radius-round: 30px;

    --shadow-dark: 0 0 8px 1px var(--color-black);
    --shadow-orange: 0 0 8px 1px var(--color-orange-dark);

    --text-shadow-dark: 1px 1px 1px var(--color-black);
    --text-shadow-orange: 1px 1px 1px var(--color-orange-dark);

    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Saira', sans-serif;
    --font-awesome: 'Font Awesome 7 Free';
    --font-heading-alt: "New Rocker", system-ui;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
}

body {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

body > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Typography
========================= */

h2, h3 {
    font-family: var(--font-heading-alt);
    font-weight: 600;
    text-shadow: 0 0 1px transparent, 0 1px 2px rgb(0 0 0 / 50%);
}

h2.main-title{
    color: var(--color-white);
    text-transform: uppercase;
    font-size:2rem;
}

h3.link-titles{
    color: var(--color-orange);
    font-size: 1.5rem;
}

.title {
    margin-top: -10px;
    padding: 0 15px;
    border-radius: var(--radius-pill);
    background: var(--color-orange);
    color: var(--color-white);
    text-shadow: var(--text-shadow-orange);
}

.sub-title {
    margin-top: -5px;
    color: var(--color-white);
    letter-spacing: 0.3rem;
    text-shadow: 1px 1px 1px #0b0908;
}

.sub-title a {
    text-decoration: none;
}

/* =========================
   Main Layout
========================= */

section {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow-y: auto;
}

section > div,
section > div > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section > div {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 10px;
}

section > div > div {
    padding: 10px;
}

.avatar {
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: var(--shadow-dark);
}

/* =========================
   Social Icons
========================= */

.sm-links {
    width: 50px;
    height: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    vertical-align: middle;
    filter: drop-shadow(1px 1px 1px var(--color-orange-dark));
}

.sm-links:hover {
    color: var(--color-orange);
}

.sm-links i,
.sm-links svg {
    display: block;
}

.sm-links i {
    font-size: 1.8rem;
    line-height: 1;
}

.sm-links svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* =========================
   Link Buttons
========================= */

.linkbtn {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border: var(--border-white);
    border-radius: var(--radius-pill);
    color: var(--color-white);
    text-decoration: none;
    text-shadow: var(--text-shadow-dark);
    transition: background-color 200ms ease, color 200ms ease;
}

.linkbtn::after {
    content: '\f054';
    margin-left: auto;
    color: currentColor;
    font-family: var(--font-awesome);
    font-weight: 900;
}

.linkbtn:hover {
    background: var(--color-white);
    color: var(--color-dark);
    text-shadow: none;
}

.linkbtn i {
    font-size: 1.3em;
}

/* =========================
   Accordion
========================= */

.accordion {
    width: 100%;
    margin-bottom: 4px;
    padding: 18px;
    background-color: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: 15px;
    outline: none;
    text-align: left;
    text-shadow: var(--text-shadow-dark);
    transition: background-color 0.4s ease, border-radius 0.25s ease;
}

button.accordion {
    border: var(--border-white);
    border-radius: var(--radius-round);
}

.accordion:hover,
.email-sign-up:hover {
    background-color: var(--color-orange-dark);
}

.accordion::after {
    content: '\f078';
    float: right;
    margin-top: 3px;
    margin-left: 5px;
    color: var(--color-white);
    font-family: var(--font-awesome);
    font-weight: 900;
}

.accordion.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--color-orange-dark);
}

.accordion.active::after {
    content: '\f077';
}

.panel {
    width: 100%;
    max-height: 0;
    margin-top: -1rem;
    padding: 0 18px;
    display: block;
    overflow: hidden;
    background-color: transparent;
    border-right: 1.5px solid transparent;
    border-bottom: 1.5px solid transparent;
    border-left: 1.5px solid transparent;
    border-bottom-right-radius: var(--radius-round);
    border-bottom-left-radius: var(--radius-round);
    transition: max-height 0.25s ease-out, border-color 0.15s ease;
}

.accordion.active + .panel {
    border-right-color: var(--color-white);
    border-bottom-color: var(--color-white);
    border-left-color: var(--color-white);
}

.panel p {
    padding: 15px 0;
    color: var(--color-white);
    text-shadow: var(--text-shadow-dark);
}

.gallery-accordion .panel {
    padding: 0 !important;
}

/* =========================
   Email Signup Shell
========================= */

.email {
    width: 100%;
    margin-top: 10px;
    padding: 20px;
    border-radius: var(--radius-round);
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    text-align: center;
}

.email h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.email p {
    font-size: 0.8rem;
    font-style: italic;
}

form {
    width: 100%;
    display: flex;
}

input {
    width: 83%;
    padding: 10px 15px;
    border: var(--border-white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.email-sign-up {
    padding: 10px 20px;
    border: var(--border-white);
    border-radius: var(--radius-sm);
    background: var(--color-orange);
    color: var(--color-white);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-shadow: var(--text-shadow-orange);
    transition: background-color 0.4s ease;
}

/* =========================
   Brevo Email Signup
========================= */

.email .sib-form,
.email .sib-form-container,
.email #sib-container {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.email .sib-form {
    padding: 0;
    background-color: transparent;
}

.email #sib-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.email .sib-form-block,
.email .sib-input,
.email .form__entry,
.email .form__label-row,
.email .entry__field,
.email .sib-name-field-wrap,
.email .sib-email-field-wrap,
.email .sib-submit-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}

.email .sib-name-field-wrap,
.email .sib-email-field-wrap,
.email .sib-submit-wrap {
    flex: none;
}

.email #FIRSTNAME,
.email #EMAIL {
    width: 100%;
    padding: 10px 15px;
    border: var(--border-white);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.2;
}

.email #FIRSTNAME::placeholder,
.email #EMAIL::placeholder {
    color: var(--color-gray-placeholder);
    font-family: var(--font-main);
    text-align: left;
}

.email .email-sign-up {
    width: 100%;
    margin-top: 4px;
    padding: 13px 15px;
    border: var(--border-white);
    border-radius: var(--radius-sm);
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-shadow: var(--text-shadow-orange);
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.email .email-sign-up:hover {
    background-color: var(--color-orange-dark);
}

.email .email-sign-up svg,
.email .input--hidden,
.email .g-recaptcha-v3,
.email .sib-notification__icon,
.rc-anchor-normal-footer {
    display: none !important;
}

.email .entry__error {
    margin: 6px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
}

.sib-form .entry__error {
    border-radius: 2px;
    color: var(--color-white) !important;
    font-size: 0.7rem !important;
    font-style: italic;
}

.email .sib-form-message-panel {
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: var(--font-main);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.email .sib-form-message-panel__text,
.email .sib-form-message-panel__inner-text {
    display: block;
}

.email .sib-form-message-panel__text {
    padding: 0;
    text-align: left;
}

.email #error-message,
.email #success-message,
.email #error-message .sib-form-message-panel__inner-text,
.email #success-message .sib-form-message-panel__inner-text {
    color: var(--color-white);
}

.grecaptcha-badge {
    visibility: hidden;
}

.hide {
    display: none !important;
}

/* =========================
   Contact Form
========================= */

.contact-form {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: var(--border-black);
    background: var(--color-white);
    color: var(--color-black);
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-black);
    opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-orange-dark);
    box-shadow: var(--text-shadow-orange);
}

.contact-form button {
    width: 100%;
    padding: 12px 14px;
    border: var(--border-white);
    border-radius: var(--radius-sm);
    background: var(--color-orange);
    color: var(--color-white);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-form button:hover {
    border: var(--border-white);
    background: var(--color-orange-dark);
    color: var(--color-white);
}

/* =========================
   Mobile
========================= */

@media screen and (max-width: 600px) {
    .email {
        width: 100%;
        box-sizing: border-box;
        margin-top: 10px;
        border-radius: var(--radius-round);
        background: rgba(0, 0, 0, 0.5);
        color: var(--color-white);
        text-align: center;
    }

    .email #sib-form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .email .sib-name-field-wrap,
    .email .sib-email-field-wrap,
    .email .sib-submit-wrap {
        width: 100%;
        flex: none;
        margin: 0;
        padding: 0;
    }

    .email #FIRSTNAME,
    .email #EMAIL,
    .email .email-sign-up {
        width: 100%;
        box-sizing: border-box;
    }

    .email .email-sign-up {
        margin-top: 0;
        margin-left: 0 !important;
    }

    .grecaptcha-badge {
        visibility: hidden !important;
    }
}

@media screen and (max-width: 500px) {
    #sib-container {
        padding: 15px 9px 32px !important;
    }
}
