/*
Theme Name: OB MediaOne Complete Theme
Author: OB MediaOne
Version: 3.1
Description: Complete premium WordPress theme for OB MediaOne.
*/

:root{
    --bg:#070B14;
    --bg2:#0B1220;
    --blue:#00AEEF;
    --purple:#7B61FF;
    --text:#ffffff;
    --muted:#B8C2D8;
    --line:rgba(255,255,255,.14);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
}

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

.container{
    width:min(1180px,calc(100% - 38px));
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99;
    background:rgba(7,11,20,.86);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line);
}

.nav{
    height:95px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
}

.logo img{
    height:240px;
    width:auto;
    display:block;
}

.mark{
    width:48px;
    height:48px;
    border:3px solid var(--blue);
    border-radius:16px;
    display:grid;
    place-items:center;
}

.menu{
    display:flex;
    gap:26px;
    font-weight:800;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 24px;
    border-radius:999px;
    font-weight:900;
    border:1px solid var(--line);
}

.btn-primary{
    background:linear-gradient(135deg,var(--blue),#1677ff);
    border:0;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    padding:155px 0 70px;
    background:linear-gradient(
        90deg,
        rgba(7,11,20,.94),
        rgba(7,11,20,.70),
        rgba(7,11,20,.45)
    );
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(7,11,20,0.65);
    z-index:-1;
}

.eyebrow{
    display:inline-flex;
    padding:8px 14px;
    border:1px solid rgba(0,170,255,.35);
    background:rgba(0,170,255,.08);
    color:#5cc9ff;
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    font-weight:900;
    margin-bottom:22px;
}

.hero h1{
    max-width:880px;
    font-size:clamp(32px,5vw,72px);
    line-height:.92;
    letter-spacing:-.07em;
    text-transform:uppercase;
}

.grad{
    background:linear-gradient(135deg,#ffffff,var(--blue),var(--purple));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero p{
    max-width:720px;
    color:#d8dfef;
    font-size:21px;
    margin:26px 0 34px;
}

.actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* SECTIONS */

.section{
    padding:100px 0;
}

.head{
    max-width:840px;
    margin-bottom:44px;
}

.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.head h2{
    font-size:clamp(34px,5vw,62px);
    line-height:1;
    letter-spacing:-.05em;
    margin-bottom:18px;
}

.head p,
.card p,
.muted{
    color:var(--muted);
}

.grid{
    display:grid;
    gap:22px;
}

.grid3{
    grid-template-columns:repeat(3,1fr);
}

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

.card{
    border:1px solid var(--line);
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.075),
        rgba(255,255,255,.045)
    );
    border-radius:26px;
    padding:30px;
    box-shadow:0 24px 80px rgba(0,0,0,.35);
}

.icon{
    width:56px;
    height:56px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:rgba(0,170,255,.12);
    font-size:28px;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
    margin-bottom:10px;
}

.card ul{
    margin:18px 0 0 18px;
    color:#d5dcef;
}

/* STRIP */

.strip{
    padding:34px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:rgba(255,255,255,.035);
}

.strip .container{
    display:flex;
    gap:18px;
    justify-content:space-between;
    flex-wrap:wrap;
    font-weight:900;
    color:#dfe8fb;
}

/* ABOUT */

.about{
    background:
        radial-gradient(circle at 10% 20%,rgba(0,170,255,.18),transparent 30%),
        var(--bg2);
}

.aboutgrid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:48px;
    align-items:center;
}

.photo{
    border-radius:32px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:0 24px 80px rgba(0,0,0,.4);
}

.photo img{
    width:100%;
    height:620px;
    object-fit:cover;
    object-position:center top;
}

.badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:26px;
}

.badge{
    padding:9px 14px;
    border:1px solid var(--line);
    border-radius:999px;
    background:rgba(255,255,255,.055);
    font-weight:800;
    font-size:13px;
}

/* CTA */

.cta{
    text-align:center;
    padding:95px 30px;
    border-radius:36px;
    background:linear-gradient(
        135deg,
        rgba(0,170,255,.18),
        rgba(123,97,255,.16)
    );
    border:1px solid var(--line);
}

.cta h2{
    font-size:clamp(38px,6vw,76px);
    line-height:.95;
    letter-spacing:-.06em;
    margin-bottom:20px;
}

/* CONTACT */

.contactgrid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:38px;
}

.field{
    width:100%;
    padding:16px 18px;
    margin-bottom:16px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:1px solid var(--line);
    color:white;
    font:inherit;
}

.notice{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:18px;
    background:rgba(40,240,167,.12);
    border:1px solid rgba(40,240,167,.26);
    color:#cffff0;
}

/* PAGES */

.page{
    padding:145px 0 80px;
    min-height:70vh;
}

.page h1{
    font-size:clamp(42px,7vw,78px);
    line-height:1;
    margin-bottom:20px;
}

/* FOOTER - 4 COLUMNS */

.footer{
    background:#050811;
    padding:70px 0;
    border-top:1px solid rgba(255,255,255,.10);
    color:#B8C2D8;
}

.footer .container{
    width:min(1500px,94%);
    margin:auto;
}

.footgrid{
    display:grid !important;
    grid-template-columns:38% 20% 20% 22% !important;
    gap:45px !important;
    align-items:start !important;
}

.footer-column strong{
    color:#ffffff;
    display:block;
    margin-bottom:16px;
    font-size:20px;
    font-weight:900;
}

.footer-column p{
    color:#B8C2D8;
    line-height:1.8;
    margin:0 0 14px;
    font-size:17px;
}

.footer-column a{
    color:#B8C2D8;
    text-decoration:none;
}

.footer-column a:hover{
    color:#00AAFF;
}

/* RESPONSIVE */

@media(max-width:900px){
    .menu,
    .header .btn{
        display:none;
    }

    .grid3,
    .grid2,
    .aboutgrid,
    .contactgrid{
        grid-template-columns:1fr;
    }

    .footgrid{
        grid-template-columns:1fr !important;
    }

    .photo img{
        height:auto;
    }

    .hero{
        padding-top:130px;
    }

    .section{
        padding:75px 0;
    }
}

@media(max-width:560px){
    .hero h1{
        font-size:44px;
    }

    .actions{
        display:grid;
    }

    .btn{
        width:100%;
    }

    .logo img{
        height:65px;
    }
}
/* FORCE FOOTER 4 COLUMNS */
footer.footer .footgrid{
    display:grid !important;
    grid-template-columns:1.5fr 1fr 1fr 1fr !important;
    gap:50px !important;
    align-items:start !important;
}

footer.footer .footer-column{
    min-width:0 !important;
}

@media(max-width:900px){
    footer.footer .footgrid{
        grid-template-columns:1fr !important;
    }
}
body.admin-bar .header{
    top:32px;
}

@media screen and (max-width:782px){
    body.admin-bar .header{
        top:46px;
    }
}
.header .btn-primary{
    min-height:40px;
    padding:0 16px;
    font-size:13px;
    font-weight:700;
}