/**
 * VeeMarine Theme - Main Stylesheet
 * All custom styles extracted from original HTML
 */

/* ===================================
   RESET & GLOBAL STYLES
   =================================== */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===================================
   FONTS - Local Hosting
   =================================== */

/* Cinzel - Display/Serif Font */
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cinzel-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/cinzel-medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/cinzel-bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/cinzel-black.woff2') format('woff2');
}

/* Manrope - Body/Sans Font */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/manrope-extralight.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/manrope-light.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/manrope-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/manrope-medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/manrope-semibold.woff2') format('woff2');
}

/* ===================================
   CSS VARIABLES - Color Scheme
   =================================== */

:root {
    --vm-navy: #0a192f;
    --vm-blue: #112240;
    --vm-gold: #d4af37;
    --vm-gold-light: #f3e5ab;
    --vm-slate: #8892b0;
    --vm-light: #e6f1ff;
    --abyss: #030712;
    --gold-dust: #D4AF37;

    --font-display: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--vm-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--vm-slate);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vm-gold);
}

/* ===================================
   REVEAL ON SCROLL ANIMATION
   =================================== */


.reveal {
    /* opacity: 0; Disabled for stability */
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   GLASS NAVIGATION EFFECT
   =================================== */

.glass-nav {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===================================
   TEXT EFFECTS
   =================================== */

.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FAQ ACCORDION STYLES
   =================================== */

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.animate-zoom-slow {
    animation: zoomSlow 20s linear infinite alternate;
}

.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

/* ===================================
   WORDPRESS SPECIFIC STYLES
   =================================== */

/* Alignment */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Galleries */
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875em;
    color: var(--vm-slate);
    margin-top: 0.5em;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {

    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ===================================
   STICKY HEADER STYLE (Added Fix v2)
   =================================== */
.glass-nav {
    background: rgba(10, 25, 47, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Force Admin Bar Hidden */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

/* ===================================
   STICKY HEADER STYLE (Added Fix)
   =================================== */
.glass-nav {
    background-color: rgba(26, 31, 44, 0.95);
    /* VM-Navy with opacity */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}