/* ==================================
   RESTOBRO LANDING PAGE
================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;

}

body{

background:#f8f8f8;
color:#333;

}

/* HEADER */

.header{

height:80px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 80px;

background:white;

box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.logo{

font-size:28px;

font-weight:bold;

color:#c0392b;

}

.btn-login{

text-decoration:none;

background:#c0392b;

color:white;

padding:12px 25px;

border-radius:8px;

font-weight:bold;

}

/* HERO */

.hero{

min-height:500px;

display:flex;

align-items:center;

justify-content:space-around;

padding:60px 80px;

background:linear-gradient(
135deg,
#fff,
#ffe8df
);

}

.hero-content{

max-width:600px;

}

.hero h1{

font-size:48px;

line-height:1.2;

}

.hero h1 span{

color:#c0392b;

}

.hero p{

margin:25px 0;

font-size:18px;

line-height:1.7;

}

.btn-start{

display:inline-block;

padding:15px 35px;

background:#c0392b;

color:white;

text-decoration:none;

border-radius:10px;

}

.hero-icon{

font-size:180px;

}

/* FITUR */

.fitur{

padding:60px 80px;

text-align:center;

}

.fitur h2{

font-size:32px;

margin-bottom:40px;

}

.fitur-container{

display:flex;

justify-content:center;

gap:30px;

}

.box{

background:white;

width:280px;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.icon{

font-size:45px;

margin-bottom:15px;

}

.box h3{

margin-bottom:10px;

color:#c0392b;

}

/* FOOTER */

footer{

background:#222;

color:white;

text-align:center;

padding:20px;

}

/* RESPONSIVE */

@media(max-width:768px){

.header{

padding:0 20px;

}

.hero{

flex-direction:column;

text-align:center;

}

.hero h1{

font-size:35px;

}

.hero-icon{

font-size:100px;

}

.fitur-container{

flex-direction:column;

align-items:center;

}

}
