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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff8ef;
}

.hero{
    width:1200px;
    margin:0 auto;
    min-height:100vh;
padding-top:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.left{
    width:50%;
}

.right{
    width:50%;
    text-align:center;
}

.right img{
    width:450px;
}

h1{
    font-size:72px;
    color:#ff9800;
    margin-bottom:20px;
}

h2{
    font-size:48px;
    color:#5b3b1d;
    margin-bottom:30px;
}

p{
    font-size:28px;
    color:#666;
    line-height:1.8;
}
button{
    margin-top:30px;
    padding:15px 35px;
    background:#ff9800;
    color:white;
    border:none;
    border-radius:10px;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#e68900;
    transform:scale(1.05);
}
header{
    width:100%;
    height:80px;
    background:white;

    display:flex;
align-items:center;

padding:0 60px;

    position:fixed;
    top:0;
    left:0;

    box-shadow:0 2px 10px rgba(0,0,0,0.08);

    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-family:'Fredoka', sans-serif;

    font-size:41px;
    font-weight:700;

    color:#5b3b1d;

    letter-spacing:0px;

    text-shadow:0 2px 6px rgba(91,59,29,.15);
}
.logo img{
    width:68px;
    height:68px;
    object-fit:contain;
    margin-right:2px;
}
nav{
    flex:1;
    display:flex;
    justify-content:center;
    gap:50px;
}
nav a{
    text-decoration:none;
    color:#5b3b1d;
    font-size:20px;
    
    font-weight:600;
}

nav a:hover{
    color:#ff9800;
}
.social{
    display:flex;
    gap:18px;
    margin-left:auto;
}

.social a{
    width:44px;
    height:44px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;
    border-radius:50%;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 4px 10px rgba(0,0,0,.08);

    transition:.25s;
}

.social a:hover{
    transform:translateY(-3px);
}