
/*
Theme Name: Big Fish Custom Theme
Theme URI: https://bigfishstands.co.za
Author: OpenAI
Description: Custom lightweight WooCommerce-ready theme for Big Fish Stands.
Version: 1.0
Text Domain: bigfish
*/

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

body{
    font-family: Arial, sans-serif;
    background:#050505;
    color:#fff;
}

header{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    padding:30px 60px;
    z-index:999;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:60px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:bold;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 60px 80px;
    background:linear-gradient(to bottom,#0b0b0b,#050505);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    width:100%;
}

.hero h1{
    font-size:72px;
    line-height:1;
    margin-bottom:30px;
    text-transform:uppercase;
}

.hero p{
    color:#c0c0c0;
    max-width:500px;
    line-height:1.8;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:999px;
    background:#0F4C81;
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}

.hero-image img{
    width:100%;
    border-radius:25px;
}

@media(max-width:900px){
    .hero-grid{
        grid-template-columns:1fr;
    }

    nav{
        display:none;
    }

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

    header,
    .hero{
        padding-left:25px;
        padding-right:25px;
    }
}
