/* =========================================
   1. Base Setup & Fonts
   ========================================= */
        
/* 
   IMPORTANT: Place your downloaded font files in a 'fonts' folder 
   next to this CSS file for these to work across all devices.
*/
@font-face {
    font-family: 'Orlean';
    src: url('fonts/Orlean-Regular.woff2') format('woff2'),
         url('fonts/Orlean-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Orlean Medium';
    src: url('fonts/Orlean-Medium.woff2') format('woff2'),
         url('fonts/Orlean-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aventa';
    src: url('fonts/Aventa-Regular.woff2') format('woff2'),
         url('fonts/Aventa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #C1C5C9;
    font-family: 'Orlean', 'Aventa', system-ui, -apple-system, sans-serif;
    color: #101820;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, strong, .medium-text {
    font-family: 'Orlean Medium', 'Orlean', 'Aventa', system-ui, sans-serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   2. Global Header
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
    background: rgba(235, 235, 235, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-logo svg {
    display: block;
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 35px;
}

.header-nav a {
    font-family: 'Aventa', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #5B6871;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #FF8400;
}

.header-cta {
    font-family: 'Aventa', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #101820;
    border: 1px solid #101820;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #101820;
    color: #FFFFFF;
}

/* =========================================
   3. Layout & Background Effects
   ========================================= */
.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #EBEBEB;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 140px 20px 80px 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.blur-ellipse {
    position: absolute;
    border-radius: 50%;
    filter: blur(125px);
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
}

.orb-main {
    width: 588px;
    height: 588px;
    background: #FF8400;
    left: -100px;
    top: 20%;
}

.orb-secondary {
    width: 712px;
    height: 712px;
    background: #FFAA52;
    opacity: 0.6;
    right: -200px;
    bottom: -10%;
}

/* =========================================
   4. Glassmorphism Container
   ========================================= */
.glass-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    z-index: 2;
    padding: 70px;
    box-sizing: border-box;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

/* =========================================
   5. Typography & Content Structure
   ========================================= */
.hero-section {
    margin-bottom: 60px;
    max-width: 800px;
    scroll-margin-top: 100px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    color: #101820;
}

.hero-subtitle {
    font-size: 24px;
    color: #5B6871;
    margin: 0;
    font-family: 'Aventa', system-ui, sans-serif;
}

.divider {
    width: 60px;
    height: 2px;
    background: #FF8400;
    margin: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.content-section {
    scroll-margin-top: 100px;
}

.content-section h3 {
    font-size: 20px;
    color: #FF8400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.content-section p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.content-section .sub-text {
    color: #5B6871;
    font-size: 15px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.clean-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-title {
    display: block;
    color: #101820;
    margin-bottom: 2px;
}

.item-desc {
    display: block;
    color: #5B6871;
    font-size: 15px;
}

/* =========================================
   6. Footer
   ========================================= */
footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;   
    width: 100%;
    gap: 20px;
}

.footer-cta {
    font-size: 32px;
    color: #101820;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-family: 'Aventa', system-ui, sans-serif;
    font-size: 14px;
    color: #5B6871;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-mail {
    color: #FF8400;
    font-weight: 500;
}

/* =========================================
   7. Responsive Adjustments
   ========================================= */
@media (max-width: 850px) {
    .site-header {
        padding: 0 20px;
    }
    .header-nav {
        display: none;
    }
    .glass-container {
        padding: 40px 30px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-cta {
        font-size: 26px;
    }
    .footer-bottom {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}
