/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Orbitron:700&display=swap');

/* Root Variables */
:root {
    --gold: #CFB53B;
    --gold-light: #E6C200;
    --gold-dark: #9C7A26;
    --navy: #181B23;
    --navy-dark: #101217;
    --navy-darker: #505050;
    --black: #000;
    --white: #fff;
    --text-main: #e9e7ce;
    --shadow-gold: 0 3px 10px rgba(207,181,59,0.15);
    --btc-orange: #F7931A;
    --royal-blue: #2D5EFF;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background:  #4e5368;
   }

/* =========================
   HEADER
   ========================= */
.header {
    background: linear-gradient(120deg,#F7931A, #CFB53B 0%, #00030e 100%);
    background-size: 400% 400%;
    animation: gold-gradient-move 12s ease-in-out infinite;
    color: var(--navy-dark);
    text-align: left;
    padding: 18px 32px;
    min-height: 56px;
    height: 75px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 24px rgba(207,181,59,0.12);
    border-bottom: 3px solid var(--royal-blue);
    border-top: 3px solid var(--royal-blue);
}

@keyframes gold-gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-logo-marker {
    width: 60px;
    height: 60px;
    background: url('../assets/hashman-frog-logo.png') no-repeat center/contain;
    margin-right: 12px;
    flex-shrink: 0;
    padding: 15;
}

.header-text {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    color: var(--royal-blue);
}

/* =========================
   NAVIGATION
   ========================= */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 8px 0;
    border-bottom-left-radius: 32px;  /* Rounded bottom left */
    border-bottom-right-radius: 32px; /* Rounded bottom right */
    border-bottom: 3px solid var(--royal-blue);
}

.navigation-list {
    display: flex;
    flex-direction: row;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s;
}

.nav-link {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.1em;
    color: #f3efef;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-link.active {
    color: #000;
    background: var(--gold);
    font-weight: bold;
    border-bottom: 2px solid var(--gold);
}

.nav-link:hover {
    background: var(--gold);
    color: #000;
    transition: background 0.2s, color 0.2s;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-left: 16px;
    z-index: 10;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--gold);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* =========================
   HERO BANNER
   ========================= */
.hero-banner {
    width: 100%;
    background: #fff;
    padding: 5px 0 5px 0;
    font-size: 1.5rem;
    font-family: 'Orbitron', Arial, sans-serif;
    text-align: center;
    border-bottom: 3px solid var(--royal-blue);
    color: #F7931A;
    
}

.hero-banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-tagline {
    color: #000;
    font-size: .7em;
    margin-top: 8px;
    }

/* =========================
   MAIN WORK AREA
   ========================= */
.main-work-area {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    background:  #2D5EFF; /* Changed from --text-main to match main page background */
    z-index: 1;
    border-bottom: 3px solid var(--royal-blue);
    min-height: 800px; /* Increased from 600px */
    gap: 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 0 auto;
}

.main-left-container {
    display: block;
    width: 60vw;           /* Increased from 50vw */
    min-width: 380px;      /* Increased from 320px */
    max-width: 700px;      /* Increased from 600px */
    height: 800px;     /* Increased from 600px */
    padding: 32px 24px;
    position: relative;
    z-index: 2;
    background: #85aaf5;
    border-bottom-left-radius: 32px;
}

.main-left-text {
    font-family: Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem); /* Responsive, maxes out at 2.8rem */
    color: #070707;
    text-align: left;
    line-height: 1.2;
}

.main-left-text p {
    margin-bottom: 1.5em;
}

.main-right-video {
    width: 60vw;           /* Increased from 50vw */
    min-width: 480px;      /* Increased from 400px */
    height: 800px;     /* Increased from 600px */
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    background: #000;
    display: block;
    border-radius: 0 0 32px 0;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #413f3f;
    color: #F7931A;
    text-align: right;
    padding: 16px 360px 16px 0; /* Increased right padding for more left shift */
    font-size: 1rem;
    border-top: 2px solid var(--navy-dark);
    margin-top: 0;
}

/* =========================
   SUBSCRIBE FORM
   ========================= */
.subscribe-form-container {
    background: #181b23;
    border: 2px solid #F7931A;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(207,181,59,0.10);
    padding: 24px 18px 18px 18px;
    margin: 32px auto 0 auto;   /* Center horizontally in the container */
    max-width: 420px;
    width: 100%;
    text-align: center;
    display: block;
}

.subscribe-form-container input[type="text"],
.subscribe-form-container input[type="email"] {
    width: 90%;                     /* Restore original width */
    padding: 10px 12px;             /* Restore original padding */
    margin: 10px 0;
    border: 1px solid var(--gold);
    border-radius: 6px;
    background: #23262f;
    color: #fff;
    font-size: 1em;                 /* Restore original font size */
    font-family: 'Orbitron', Arial, sans-serif;
    outline: none;
    transition: border 0.2s;
}

.subscribe-form-container input[type="text"]:focus,
.subscribe-form-container input[type="email"]:focus {
    border: 1.5px solid #F7931A;
    background: #181b23;
}

.subscribe-form-container button {
    width: 95%;                     /* Restore original width */
    padding: 12px 0;
    margin-top: 12px;
    background: #F7931A;
    color: var(--navy-dark);
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(207,181,59,0.10);
}

.subscribe-form-container button:hover {
    background: var(--royal-blue);
    color: #fff;
}

.subscribe-note {
    margin-top: 12px;
    font-size: 1em;
    color: var(--gold);
    opacity: 1;
    text-align: center;
}

/* =========================
   RESPONSIVE STYLES
   ========================= */
@media (max-width: 900px) {
    .navigation-list {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        padding: 16px 0;
        z-index: 9;
    }
    .navigation-list.active {
        display: flex;
    }
    .hamburger {
        display: flex !important;
    }

    .main-work-area {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 100vw;
        min-height: unset;
        padding: 0;
    }
    .main-left-container {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        height: auto;
        border-bottom-left-radius: 0;
        padding: 20px 8px;
    }
    .main-left-text {
        max-width: 100vw;
        width: 100%;
    }
    .subscribe-form-container {
        max-width: 100vw;
        width: 100%;
        margin: 24px auto 0 auto;
        padding: 18px 6px 12px 6px;
    }
    .main-right-video {
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
        height: 220px;
        border-radius: 0;
        margin: 0;
        display: block;
        object-fit: cover;
        background: #000;
    }
    .main-work-area {
        display: flex;
        flex-direction: column;
    }
    .main-right-video {
        order: -1; /* Move video to the top */
    }
    .main-left-container {
        order: 0;
    }
}

@media (max-width: 600px) {
    .hero-banner-content h1 {
        font-size: 1.5rem;
        word-break: break-word;
        padding: 0 8px;
    }
    .hero-banner-content {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .hero-tagline {
        font-size: 0.9em;
        padding: 0 8px;
    }
}
