/* ======================================================
   Sebobane on the Go
   Main Stylesheet
====================================================== */

/* ==========================
   CSS VARIABLES
========================== */

:root {

    --primary: #f7e600;
    --primary-dark: #d4c400;

    --secondary: #000000;

    --white: #ffffff;

    --light: #f8f8f8;

    --grey: #666666;

    --border: #dddddd;

    --radius: 12px;

    --shadow: 0 10px 30px rgba(0,0,0,.08);

    --transition: .3s ease;

    --max-width: 1200px;

}


/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;
    color:#222;
    background:#fff;
    line-height:1.7;

}

img{

    width:100%;
    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

    color:inherit;

}


/* ==========================
   GLOBAL
========================== */

.container{

    width:90%;
    max-width:var(--max-width);
    margin:auto;

}

section{

    padding:90px 0;

}

h1{

    font-size:3.2rem;

    line-height:1.1;

    margin-bottom:25px;

}

h2{

    font-size:2.3rem;

    margin-bottom:20px;

    color:var(--secondary);

}

h3{

    margin-bottom:12px;

}

p{

    margin-bottom:18px;

    color:#444;

}

.section-intro{

    max-width:700px;

    margin:0 auto 50px;

    text-align:center;

}


/* ==========================
   BUTTON
========================== */

.btn{

    display:inline-block;

    background:var(--primary);

    color:#000;

    padding:16px 34px;

    border-radius:50px;

    font-weight:bold;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.btn:hover{

    background:var(--secondary);

    color:#fff;

}


/* ==========================
   HEADER
========================== */

header{

    background:#fff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo img{

    width:260px;

}

nav ul{

    display:flex;

    gap:30px;

}

nav a{

    font-weight:bold;

    transition:var(--transition);

}

nav a:hover{

    color:var(--primary-dark);

}


/* ==========================
   HERO
========================== */

.hero{

    background:linear-gradient(135deg,#fff 0%,#fffbe0 100%);

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.hero-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.hero p{

    margin-bottom:35px;

}


/* ==========================
   ABOUT
========================== */

.about{

    background:var(--light);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:18px;

    box-shadow:var(--shadow);

}


/* ==========================
   PRODUCTS
========================== */

.products{

    text-align:center;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    height:220px;

    object-fit:cover;

}

.product-card h3{

    padding:20px 20px 10px;

}

.product-card p{

    padding:0 20px 25px;

}


/* ==========================
   GALLERY
========================== */

.gallery{

    background:var(--light);

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.gallery-grid img{

    height:240px;

    object-fit:cover;

    border-radius:12px;

    transition:var(--transition);

}

.gallery-grid img:hover{

    transform:scale(1.04);

}


/* ==========================
   VISION
========================== */

.vision-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

}

.vision-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:var(--shadow);

    border-top:6px solid var(--primary);

}

.vision-card ul{

    list-style:disc;

    margin-left:20px;

}


/* ==========================
   ADVANTAGES
========================== */

.advantages{

    background:var(--light);

}

.advantage-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.advantage-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border-left:6px solid var(--primary);

}

.advantage-card:hover{

    transform:translateY(-6px);

}


/* ==========================
   CONTACT
========================== */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.contact img{

    border-radius:15px;

    box-shadow:var(--shadow);

}


/* ==========================
   FOOTER
========================== */

footer{

    background:#000;

    color:#fff;

    padding-top:60px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

}

footer img{

    width:220px;

    margin-bottom:20px;

}

footer h3{

    margin-bottom:20px;

    color:var(--primary);

}

footer ul li{

    margin-bottom:10px;

}

footer p{

    color:#ddd;

}

footer a{

    color:#ddd;

    transition:var(--transition);

}

footer a:hover{

    color:var(--primary);

}

.copyright{

    text-align:center;

    padding:30px 0;

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.15);

}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px){

.hero-content,
.about-grid,
.contact-grid,
.vision-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

header .container{

flex-direction:column;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media (max-width:768px){

h1{

font-size:2.3rem;

}

h2{

font-size:1.9rem;

}

.logo img{

width:200px;

}

section{

padding:70px 0;

}

.product-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

nav ul{

gap:15px;

}

.btn{

display:block;

text-align:center;

}

}