/* =========================================================
   EURAS THE HUB
   MASTER FRAMEWORK CSS
   Minimalist Bauhaus Structure
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #333333;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
}

/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    width: 100%;
    background: rgba(25,25,25,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.header-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {

    height: 42px;

    width: auto;

    display: block;

}

.logo-area img {
    height: 58px;
    width: auto;
}

.main-menu ul {
    display: flex;
    gap: 40px;
}

.main-menu a {
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-menu a:hover {
    color: #f79d20;
}
.main-menu a.active-link {

    color: #f79d20;

}
/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {

    width: 100%;

    min-height: 100vh;

    background-size: cover;

    background-position: center center;

    position: relative;

    display: flex;

    align-items: center;

    padding-top: 90px;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 120px;
}

.hero-content h1 {

    font-size: 64px;

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    max-width: 700px;

    margin-bottom: 30px;

}

.hero-content p {
    font-size: 20px;
    color: #dddddd;
    max-width: 700px;
}
.info-section {
    padding-bottom: 30px;
} 

/* =========================================================
   SPECIAL SECTIONS
   ========================================================= */

.special-section {
    width: 100%;
    padding: 70px 0;
}

.special-one {
    background: #3a3a3a;
}

.special-two {
    background: #2b2b2b;
}

.special-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.special-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f79d20;
}

.special-container p {
    max-width: 850px;
    color: #cccccc;
    font-size: 18px;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */

.main-content {
    width: 100%;
    padding: 100px 0;
    background: #333333;
}

.main-content-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 52px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-content p {
    max-width: 900px;
    font-size: 19px;
    color: #dddddd;
    margin-bottom: 25px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    background: #1f1f1f;
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 80px;
    padding: 25px 0;
}

.footer-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-inner h3 {
    font-size: 24px;
    color: #f79d20;
    letter-spacing: 1px;
}

.footer-inner p,
.footer-inner a {
    color: #cccccc;
    font-size: 15px;
}

.footer-inner a:hover {
    color: #f79d20;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #f79d20;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 30px;
}

.btn-primary:hover {
    background: #ffffff;
    color: #333333;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .header-inner {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 20px 0;
    }

    .main-menu ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .main-content h2,
    .special-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .main-content,
    .special-section {
        padding: 70px 0;
    }
}
/* =========================================================
   FOOTER FOUNDATION
   ========================================================= */

.site-footer {

    background: linear-gradient(
        to bottom,
        #1f1f1f,
        #161616
    );

    border-top: 1px solid rgba(255,255,255,0.05);

    margin-top: 0;

}

.site-footer .layout-container {

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

}
/* =========================================================
   SIMPLE FOOTER
   ========================================================= */

.simple-footer {

    background: #161616;

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 25px 20px;

    text-align: center;

}

.simple-footer p {

    color: #888888;

    font-size: 13px;

    margin: 5px 0;

    letter-spacing: 0.5px;

}
/* =========================================================
   HERO PLATFORM BUTTONS
   ========================================================= */

.hero-platform-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 25px;

}

.btn-secondary {

    display: inline-block;

    padding: 12px 22px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.3s ease;

}

.btn-secondary:hover {

    background: #f79d20;

    border-color: #f79d20;

    color: #ffffff;

}

/* =========================================================
   MOBILE HERO BUTTONS
   ========================================================= */

@media (max-width: 768px) {

    .hero-platform-buttons {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

    .btn-secondary {

        width: 100%;

        text-align: center;

    }

}
/* =========================================================
   SMOOTH SCROLL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

/* =========================================================
   HERO PLATFORM BUTTONS
   ========================================================= */

.hero-platform-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 25px;

}

.btn-secondary {

    display: inline-block;

    padding: 12px 22px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.3s ease;

}

.btn-secondary:hover {

    background: #f79d20;

    border-color: #f79d20;

    color: #ffffff;

}

/* =========================================================
   MOBILE HERO BUTTONS
   ========================================================= */

@media (max-width: 768px) {

    .hero-platform-buttons {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

    .btn-secondary {

        width: 100%;

        text-align: center;

    }

}
/* =========================================================
   ANCHOR OFFSET FIX
   ========================================================= */

.anchor-point {
    display: block;
    position: relative;
    top: -130px;
    visibility: hidden;
}
/* =========================================================
   HERO BANNER FIX
   ========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    min-height: 100vh;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.45);

}

.hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

}
/* =========================================================
   FORCE HERO BANNER
   ========================================================= */

.hero-section {

    background-size: cover !important;

    background-position: center center !important;

    background-repeat: no-repeat !important;

    min-height: 100vh !important;

    position: relative !important;

    display: flex !important;

    align-items: center !important;

}

.hero-overlay {

    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: rgba(0,0,0,0.45) !important;

}

.hero-content {

    position: relative !important;

    z-index: 2 !important;

    width: 90% !important;

    max-width: 1400px !important;

    margin: 0 auto !important;

}
/* ======================================================
   GLOBAL SCROLL TO TOP BUTTON
====================================================== */

.scroll-to-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(247, 157, 32, 0.45);
    border-radius: 50%;
    background: #f79d20;
    color: #111111;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.scroll-to-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-button:hover,
.scroll-to-top-button:focus {
    background: #ffffff;
    color: #111111;
    outline: none;
}

@media (max-width: 768px) {
    .scroll-to-top-button {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ======================================================
   HOME HERO — EURAS The Hub gateway style
   ====================================================== */

.home-gateway-hero {
    min-height: calc(100vh - 92px) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    align-items: center !important;
    padding-top: 92px !important;
    overflow: hidden;
}

.home-gateway-hero .hero-overlay {
    background:
        linear-gradient(90deg, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0.58) 34%, rgba(15, 15, 15, 0.16) 68%, rgba(15, 15, 15, 0.04) 100%) !important;
}

.home-gateway-content {
    padding-top: 0 !important;
    max-width: 1420px !important;
}

.home-gateway-content .hero-kicker {
    color: #f79d20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.home-gateway-content h1 {
    max-width: 760px !important;
    margin-bottom: 22px !important;
    font-size: clamp(58px, 8vw, 122px) !important;
    line-height: 0.92 !important;
    letter-spacing: 10px !important;
    text-transform: none !important;
    font-weight: 800 !important;
}

.home-gateway-content h1 span {
    display: block;
}

.hero-title-white {
    color: #ffffff;
}

.hero-title-orange {
    color: #f79d20;
    letter-spacing: 2px !important;
    text-transform: none !important;
}

.hero-accent-line {
    width: 92px;
    height: 3px;
    background: #f79d20;
    margin: 0 0 24px 0;
}

.home-gateway-content p {
    max-width: 660px !important;
    color: #ffffff !important;
    font-size: 19px !important;
    line-height: 1.75 !important;
    font-weight: 500;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.home-gateway-content .btn-primary {
    margin-top: 22px;
}

.home-gateway-services {
    max-width: 680px;
    margin-top: 34px !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.home-gateway-services .btn-secondary {
    min-width: 0 !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.20) !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.10) !important;
    color: #ffffff !important;
    padding: 18px 14px !important;
    text-align: center;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}

.home-gateway-services .btn-secondary:last-child {
    border-right: 0 !important;
}

.home-gateway-services .btn-secondary:hover {
    background: rgba(247, 157, 32, 0.18) !important;
    color: #f79d20 !important;
}

@media (max-width: 900px) {
    .home-gateway-hero {
        min-height: 780px !important;
        background-position: 64% center !important;
        padding-top: 86px !important;
    }

    .home-gateway-hero .hero-overlay {
        background: rgba(15, 15, 15, 0.68) !important;
    }

    .home-gateway-content h1 {
        font-size: clamp(48px, 16vw, 82px) !important;
        letter-spacing: 5px !important;
    }

    .home-gateway-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-gateway-services .btn-secondary:nth-child(2) {
        border-right: 0 !important;
    }

    .home-gateway-services .btn-secondary:nth-child(1),
    .home-gateway-services .btn-secondary:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    }
}

@media (max-width: 520px) {
    .home-gateway-hero {
        min-height: 720px !important;
    }

    .home-gateway-content .hero-kicker {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .home-gateway-content p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .home-gateway-services {
        grid-template-columns: 1fr;
    }

    .home-gateway-services .btn-secondary {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    }

    .home-gateway-services .btn-secondary:last-child {
        border-bottom: 0 !important;
    }
}
