/*
Theme Name: Airflow NZ Pro
Author: Airflow NZ Limited
Version: 1.0
*/

/* GLOBAL */

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f4f7fa;
    color:#222;
    line-height:1.6;
}

a{
    text-decoration:none;
}

/* HEADER */

.site-header{
    background:#0a2a66;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* LOGO */

.logo{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.logo a{
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo img{
    width:440px;
    max-width:95%;
    height:auto;
    display:block;
}

/* MENU */

.main-nav{
    width:100%;
    display:flex;
    justify-content:center;
}

.main-nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
}

.main-nav li{
    margin:0;
}

.main-nav a{
    color:white;
    font-weight:bold;
    letter-spacing:1px;
    transition:0.3s;
}

.main-nav a:hover{
    color:#00a8e8;
}

/* HERO */

.hero{
    min-height:85vh;

    background:
    linear-gradient(rgba(10,42,102,0.75),rgba(225,6,0,0.65)),
    url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1600&q=80');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    color:white;
    padding:20px;
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
    line-height:1.1;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

/* BUTTON */

.btn{
    background:#e10600;
    color:white;
    padding:16px 34px;
    border-radius:6px;
    font-weight:bold;
    display:inline-block;
    transition:0.3s;
}

.btn:hover{
    background:#c40000;
}

/* SECTIONS */

.section{
    padding:90px 20px;
    max-width:1200px;
    margin:auto;
}

.section h2{
    font-size:38px;
    margin-bottom:25px;
}

/* INTRO GRID */

.intro-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;
}

/* FEATURE BOX */

.feature-box{
    background:white;
    padding:35px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* DARK SECTION */

.dark-section{
    background:#0a2a66;
    color:white;
    max-width:100%;
}

.dark-section h2{
    text-align:center;
}

/* SERVICES */

.services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.service-card{
    background:white;
    color:#222;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

/* FOOTER */

footer{
    background:linear-gradient(
        135deg,
        #0a2a66 0%,
        #081d47 45%,
        #5c0000 100%
    );

    color:white;
    text-align:center;
    padding:60px 20px;
}

/* MOBILE */

@media(max-width:768px){

.site-header{
    padding:15px;
}

.logo{
    margin-bottom:15px;
}

.logo img{
    width:280px;
}

.main-nav ul{
    flex-direction:column;
    gap:15px;
}

.hero{
    min-height:70vh;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:18px;
}

.intro-grid{
    grid-template-columns:1fr;
}

.section{
    padding:70px 20px;
}

}