/* ============================================ */
/* RESET & BASE                                  */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================ */
/* FONTS                                         */
/* ============================================ */
@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('https://fonts.googleapis.com/css?family=Oswald');
}
@font-face {
    font-family: 'montserrat';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
}
@font-face {
    font-family: "D3 Euronism Bold V1";
    src: url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.eot");
    src: url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.ttf") format("truetype"),
         url("https://db.onlinewebfonts.com/t/2076c56a474917900603c00583a4c83b.svg#D3 Euronism Bold V1") format("svg");
}

/* ============================================ */
/* CSS CUSTOM PROPERTIES                         */
/* ============================================ */
:root {
    --primary-color: #190231;
    --secondary-color: #333;
    --accent-color: #a1cd3a;
    --text-on-primary: #ffffff;
    --bodyfont-dark-bg: #999;
    --bodyfont-light-bg: #666;

    --main-font: 'Montserrat', sans-serif;
    --label-font: 'Oswald', sans-serif;
    --accent-font: "D3 Euronism Bold V1";

    --text-base: clamp(.9rem, 2.4vw, 1rem);
    --text-base-new: clamp(.85rem, 2.3vw, .8rem);
    --text-header: clamp(2rem, 4vw, 3rem);
    --text-sm: 0.875rem;
    --text-xs: 0.75rem;
    --text-med: clamp(16px, 2.2vw, 22px);
    --text-title: clamp(2.2rem, 5vw, 3.8rem);
    --text-sub-title: clamp(1.8rem, 3.8vw, 2.7rem);
    --text-title-accent: clamp(2rem, 4.6vw, 3.2rem);
    --text-sub: clamp(1rem, 2vw, 1.3rem);
}

/* ============================================ */
/* GLOBAL ELEMENTS                               */
/* ============================================ */
body {
    background: #f5f5f5;
    padding: 0;
    margin: 0;
}

/*h1, h3, h4 {
    font-family: var(--label-font);
}

h2 {
    font-family: var(--label-font);
    font-size: var(--text-header);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}

p, li, small {
    font-family: var(--body-font);
}

a {
    font-family: var(--label-font);
}*/

/* ============================================ */
/* LAYOUT HELPERS                                */
/* ============================================ */
.main-content {
    padding: 20px;
}

.section-title {
    padding: 20px;
    text-align: center;
    font-family: var(--label-font);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-title p {
    font-family: var(--body-font);
    color: #999;
    font-size: var(--text-header);
    letter-spacing: 0.05em;
}

.section-title h2 {
    color: #111;
    font-size: var(--text-title);
}

.section-title span {
    font-family: var(--accent-font), var(--label-font) !important;
    color: var(--accent-color);
    font-size: var(--text-title-accent);
}

/* ============================================ */
/* BUTTONS                                       */
/* ============================================ */
.buttons {
    display: inline-block;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-family: var(--label-font);
    font-size: var(--text-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid #111;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.buttons:hover {
    background: rgba(236, 235, 235, 0.5);
    color: #111;
}

.buttons a {
    color: #fff;
    font-family: var(--label-font);
    font-size: var(--text-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    text-decoration: none;
}

.buttons a:hover {
    color: #111;
}

/* ============================================ */
/* SHARED HERO — TOP SECTION & OVERLAY           */
/* ============================================ */
.top-section {
    width: 100%;
    height: 45vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.background-image {
    position: absolute;
    top: 60px;
    right: 0;
    min-width: 100%;
    width: auto;
    height: 40vh;
    object-fit: cover;
    z-index: 1;
}


/*.video-overlay-text {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 1100px;
    margin-bottom: 20px;
}

.video-overlay-text h2 {
    font-weight: 700;
    margin-bottom: 10px;
        font-family: var(--label-font);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 0.95;
    text-shadow: 0 2px 40px rgba(0, 0, 20, 0.5);
}

.video-overlay-text p {
    font-family: var(--main-font);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-weight: 600;
    padding: 10px 20px;

}
.video-overlay-text span {
    font-weight: 700;
    margin-bottom: 10px;
        font-family: var(--label-font);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 0.95;
    text-shadow: 0 2px 40px rgba(0, 0, 20, 0.5);
}*/

/* ============================================ */
/* SVG FILL CLASSES                              */
/* ============================================ */
.cls-1 {
    fill: var(--accent-color);
}

.cls-2 {
    fill: #ffffff;
}

/* ============================================ */
/* NAV DRAWER                                    */
/* ============================================ */
.nav-drawer {
    height: auto;
}

/* ============================================ */
/* TABLET — min-width: 768px                     */
/* ============================================ */
@media (min-width: 768px) {
    .main-content {
        padding: 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-drawer {
        height: 20px;
    }
}


/* ============================================ */
/* SCROLL CUE — shared across all pages         */
/* Used by: charters, currenttours, pasttours   */
/* ============================================ */
.ph-scroll-cue {
    position: absolute;
    bottom: clamp(18px, 3vh, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ph-scroll-cue.show { opacity: 0.9; }
.ph-scroll-cue.hide { opacity: 0; }

.ph-scroll-cue span {
    font-family: var(--label-font);
    font-size: 0.9rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
}

.ph-scroll-cue-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: ph-line-drop 2s ease-in-out infinite;
}

@keyframes ph-line-drop {
    0%, 100% { transform: scaleY(1);   opacity: 0.5; }
    50%       { transform: scaleY(0.6); opacity: 1;   }
}


/* ============================================ */
/* GLOBAL BUTTONS                                */
/* btn-dark-bg  — green on black (dark heroes)  */
/* btn-light-bg — black on white (light sections)*/
/* ============================================ */

/* Green button — for dark/black backgrounds    */
/* e.g. faq cards, contact form submit           */
.btn-dark-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: #111;
    border: 2px solid var(--accent-color);
    font-family: var(--label-font);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 28px;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-dark-bg:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Black button — for light/white backgrounds   */
/* e.g. tour cards, charter inquiry, forms       */
.btn-light-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border: 2px solid #111;
    font-family: var(--label-font);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 28px;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-light-bg:hover {
    background: transparent;
    color: #111;
}

/* Shared success state for form submissions     */
.btn-dark-bg.success,
.btn-light-bg.success {
    background: #2d6a4f;
    border-color: #2d6a4f;
    color: #fff;
}

/* ============================================ */
/* SCROLL REVEAL ANIMATIONS                      */
/* Shared utility — used across all pages.      */
/* JS adds .appear when element enters viewport. */
/* ============================================ */
.from-left,
.from-right,
.from-bottom,
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.from-left   { transform: translateX(-30px); }
.from-right  { transform: translateX(30px); }
.from-bottom { transform: translateY(30px); }
.fade-in     { transform: none; }

.from-left.appear,
.from-right.appear,
.from-bottom.appear,
.fade-in.appear {
    opacity: 1;
    transform: none;
}
