/*
Theme Name: MarineIQ
Theme URI: https://marineiq.com
Author: MarineIQ
Author URI: https://marineiq.com
Description: Premium Custom WordPress Theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: marineiq
*/

:root{
    --primary:#0A1F33;
    --secondary:#102C44;
    --gold:#C7A15A;
    --gold-light:#E2C88A;
    --white:#ffffff;
    --black:#101010;
    --text:#444;
    --border:#E5E5E5;
    --light:#F7F8FA;
    --radius:8px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
}