/* Modern Patch for Lureawayband.com */
:root {
    --primary-color: #f39c12;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 10px rgba(243, 156, 18, 0.5);
}

/* Sticky Header with Glassmorphism */
#header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    transition: all 0.3s ease;
}

#header.alt {
    background: transparent;
    border-bottom: none;
}

/* Improved Typography */
body,
input,
select,
textarea {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: var(--text-glow);
}

/* Button & Link Modernization */
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.button:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000 !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Feature Cards Modernization */
section.features article {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

section.features article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

/* Mobile Friendly Adjustments */
@media screen and (max-width: 736px) {
    #header nav {
        right: 1em;
        top: 0.5em;
    }

    #banner .inner {
        padding: 4em 2em;
        align-items: center !important;
    }

    #banner h2 img {
        max-width: 80% !important;
    }
}

/* Desktop Logo Sizing */
@media screen and (min-width: 737px) {
    #banner h2 img {
        max-width: 500px;
        height: auto;
    }
}

/* Video Responsive Container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2em;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Booking Button */
.booking-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #c5a059;
    /* Deep Gold */
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 10001;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: #c5a059 !important;
    border-color: #c5a059;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#banner .inner,
section.features article {
    animation: fadeIn 1s ease forwards;
}

/* Centering Utilities */
.centered-image-container {
    text-align: center;
    margin-bottom: 2em;
}

.centered-image-container img {
    display: inline-block;
    max-width: 100%;
}

/* Hero Video Background */
#page-wrapper #banner {
    position: relative !important;
    overflow: hidden !important;
    background-image: none !important;
    background-color: #000 !important;
}

#page-wrapper #banner .video-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#page-wrapper #banner .video-background iframe {
    width: 100vw !important;
    height: 56.25vw !important;
    /* 16:9 Aspect Ratio */
    min-height: 100vh !important;
    min-width: 177.77vh !important;
    /* 16:9 Aspect Ratio */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

#page-wrapper #banner .inner {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    /* Slightly darker overlay for hero */
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    /* Centering fix */
    text-align: center !important;
}

#banner h2 {
    margin: 0 !important;
    border: none !important;
}

/* Ensure Logo and Nav are above video */
#page-wrapper #banner h2,
#page-wrapper #banner nav {
    position: relative !important;
    z-index: 3 !important;
    background: transparent !important;
    /* Remove any background from these elements */
}
