/* ==========================================
   VendByte Website
   styles.css
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;

    background:#ffffff;

    color:#1f2937;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

.container{

    width:min(1200px,92%);
    margin:auto;

}

/* ==========================
        HEADER
========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(15,23,42,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.12);

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:78px;

}

.logo{

    font-size:2rem;

    font-weight:800;

    color:white;

}

.logo span{

    color:#3B82F6;

}

nav ul{

    display:flex;

    gap:40px;

    list-style:none;

}

nav a{

    color:white;

    font-weight:600;

    transition:.25s;

}

nav a:hover{

    color:#60A5FA;

}

/* ==========================
        HERO
========================== */

.hero{

    background:linear-gradient(135deg,#0F172A,#1E293B);

    min-height:100vh;

    display:flex;

    align-items:center;

    color:white;

    padding-top:80px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

}

.eyebrow{

    color:#60A5FA;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:20px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:1.1rem;

    color:#D1D5DB;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================
       BUTTONS
========================== */

.btn-primary{

    background:#2563EB;

    color:white;

    padding:16px 32px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:#1D4ED8;

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.25);

    color:white;

    padding:16px 32px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#0F172A;

}

/* ==========================
       HERO CARD
========================== */

.hero-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    padding:40px;

    backdrop-filter:blur(18px);

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.hero-card h3{

    margin-bottom:25px;

    font-size:1.5rem;

}

.hero-card ul{

    list-style:none;

}

.hero-card li{

    margin-bottom:16px;

    font-size:1.05rem;

}

/* ==========================
       GENERAL SECTIONS
========================== */

.section{

    padding:100px 0;

}

.gray{

    background:#F8FAFC;

}

.section h2{

    font-size:2.4rem;

    text-align:center;

    margin-bottom:25px;

    color:#0F172A;

}

.section-text{

    max-width:850px;

    margin:auto;

    text-align:center;

    font-size:1.15rem;

    color:#6B7280;

}

/* ==========================
          CARDS
========================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:55px;

}

.card{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    margin-bottom:18px;

    color:#0F172A;

}

.card p{

    color:#6B7280;

}

/* ==========================================
        BENEFITS
========================================== */

.benefits{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:55px;

}

.benefit{

    padding:35px;

    border-radius:18px;

    background:white;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.benefit:hover{

    transform:translateY(-8px);

}

.benefit h3{

    margin-bottom:15px;

    color:#0F172A;

    font-size:1.35rem;

}

.benefit p{

    color:#6B7280;

}

/* ==========================================
        QUOTE SECTION
========================================== */

.quote-section{

    background:#0F172A;

    color:white;

    padding:100px 0;

}

.quote-section h2{

    text-align:center;

    font-size:2.6rem;

    margin-bottom:20px;

}

.quote-section>div>p{

    text-align:center;

    color:#CBD5E1;

    max-width:700px;

    margin:0 auto 50px;

}

form{

    max-width:760px;

    margin:auto;

    display:grid;

    gap:20px;

}

input,
textarea,
select{

    width:100%;

    padding:16px;

    border:none;

    border-radius:10px;

    font-size:1rem;

    outline:none;

    font-family:inherit;

}

textarea{

    resize:vertical;

    min-height:150px;

}

button{

    background:#2563EB;

    color:white;

    border:none;

    padding:18px;

    border-radius:10px;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#1D4ED8;

}

/* ==========================================
        FOOTER
========================================== */

footer{

    background:#020617;

    color:#94A3B8;

    padding:70px 0;

    text-align:center;

}

footer h3{

    color:white;

    margin-bottom:15px;

    font-size:2rem;

}

footer p{

    margin-top:10px;

}

/* ==========================================
        ANIMATIONS
========================================== */

.card,
.benefit,
.hero-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
        UTILITIES
========================================== */

.shadow{

    box-shadow:0 15px 45px rgba(0,0,0,.10);

}

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-4{

    margin-top:40px;

}

.mt-5{

    margin-top:50px;

}

/* ==========================================
        MOBILE
========================================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-card{

margin-top:20px;

}

.hero h1{

font-size:3rem;

}

}

@media(max-width:768px){

nav ul{

gap:20px;

font-size:.95rem;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:2.4rem;

}

.section{

padding:80px 0;

}

.section h2{

font-size:2rem;

}

.quote-section h2{

font-size:2rem;

}

.logo{

font-size:1.6rem;

}

}

@media(max-width:576px){

.nav{

flex-direction:column;

justify-content:center;

height:auto;

padding:20px 0;

gap:20px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

.hero{

min-height:auto;

padding:150px 0 80px;

}

.hero h1{

font-size:2rem;

}

.hero p{

font-size:1rem;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.cards,
.benefits{

grid-template-columns:1fr;

}

}

/* ==========================================
        END
========================================== */