*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff7ed;
    color:#222;
}

/* Header */

header{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    width:150px;
    transition:.3s;
}

.logo:hover{
    transform:scale(1.05);
}

nav a{
    color:#333;
    text-decoration:none;
    margin-left:30px;
    font-weight:700;
    transition:.3s;
}

nav a:hover{
    color:#ff7300;
}

/* Hero */

.hero{
    text-align:center;
    padding:110px 20px;
    background:
    linear-gradient(135deg,#ffb347,#ff7300);
    color:white;
    overflow:hidden;
}

.hero-logo{
    width:230px;
    margin-bottom:25px;
    animation:float 3s ease-in-out infinite;
}

.hero h1{
    font-size:56px;
    margin-bottom:20px;
    animation:fadeUp .8s;
}

.hero p{
    max-width:750px;
    margin:auto;
    font-size:21px;
    line-height:1.7;
    animation:fadeUp 1s;
}

/* Animations */

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Buttons */

.buttons{
    margin-top:40px;
}

.button{
    display:inline-block;
    background:white;
    color:#ff7300;
    text-decoration:none;
    padding:16px 35px;
    margin:8px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.button:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

/* Status */

.status{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(10px);
    max-width:900px;
    margin:50px auto;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.status h2{
    color:#ff7300;
    margin-bottom:15px;
    font-size:32px;
}

/* Cards */

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:30px;
}

.card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    width:300px;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.card h3{
    margin-bottom:15px;
    color:#ff7300;
    font-size:24px;
}

/* Sections */

.info{
    max-width:950px;
    margin:80px auto;
    text-align:center;
    padding:0 25px;
}

.info h2{
    color:#ff7300;
    margin-bottom:25px;
    font-size:38px;
}

.info p{
    font-size:20px;
    line-height:1.8;
}

/* CTA */

.cta{
    background:
    linear-gradient(135deg,#ff7300,#ff9d00);
    color:white;
    text-align:center;
    padding:90px 20px;
}

.cta h2{
    margin-bottom:30px;
    font-size:45px;
}

/* Menu/About Pages */

.page{
    max-width:1050px;
    margin:60px auto;
    padding:25px;
    text-align:center;
}

.page h1{
    font-size:48px;
    color:#ff7300;
    margin-bottom:30px;
}

.page p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}

.menu-image{
    width:100%;
    max-width:700px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.3s;
}

.menu-image:hover{
    transform:scale(1.02);
}

/* Footer */

footer{
    background:#1f1f1f;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:80px;
}


/* iPad + Mobile */

@media(max-width:768px){

header{
    flex-direction:column;
    padding:20px;
}

.logo{
    width:130px;
}

nav{
    margin-top:15px;
}

nav a{
    margin:0 10px;
    font-size:14px;
}

.hero{
    padding:80px 20px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:18px;
}

.hero-logo{
    width:180px;
}

.card{
    width:100%;
}

.info h2{
    font-size:32px;
}

.cta h2{
    font-size:34px;
}

}