/* ===========================
   G-SUN - STYLE PRINCIPAL
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

/* HEADER */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    z-index:999;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.container{
    max-width:1200px;
    margin:auto;
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:65px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#f4c542;
}

.phone-btn{
    background:#f4c542;
    color:#222;
    padding:12px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.phone-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(244,197,66,.35);
}

/* HERO */

.hero{

    height:100vh;

    background:url("images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    color:white;

    max-width:850px;

    padding:20px;

}

.hero h1{

    font-size:58px;

    font-weight:700;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-yellow{

    background:#f4c542;

    color:#222;

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-yellow:hover{

    transform:translateY(-4px);

}

.btn-dark{

    background:white;

    color:#222;

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

}

/* SECTIONS */

section{

    padding:100px 20px;

}

section h2{

    text-align:center;

    font-size:38px;

    margin-bottom:50px;

}

/* CARDS */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

    max-width:1200px;

    margin:auto;

}

.card{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;

}

/* ABOUT */

.about{

    background:#f8f8f8;

}

.about ul{

    max-width:800px;

    margin:auto;

    list-style:none;

}

.about li{

    background:white;

    margin-bottom:15px;

    padding:18px;

    border-left:5px solid #f4c542;

    border-radius:8px;

}

/* CONTACT */

.contact form{

    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}

input,textarea{

    padding:18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

}

textarea{

    min-height:160px;

}

button{

    background:#f4c542;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    cursor:pointer;

    font-weight:700;

}

/* FOOTER */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:35px;

}

/* MOBILE */

@media(max-width:900px){

nav{

display:none;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

.phone-btn{

display:none;

}

.logo img{

height:55px;

}

}
