*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Noto Sans KR',sans-serif;
}

body{
background:#fafaf8;
color:#222;
line-height:1.6;
}

header{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
box-shadow:0 2px 15px rgba(0,0,0,.08);
z-index:1000;
}

.logo h1{
font-size:28px;
color:#1b5e20;
}

.logo span{
font-size:13px;
color:#666;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#222;
font-weight:600;
}

nav a:hover{
color:#4caf50;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),
url('https://images.unsplash.com/photo-1622597467836-f3285f2131b7?q=80&w=1800');
background-size:cover;
background-position:center;
color:white;
}

.hero h2{
font-size:70px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
}

.hero-buttons{
margin-top:30px;
}

.hero button{
padding:15px 35px;
border:none;
border-radius:30px;
margin:10px;
font-size:16px;
cursor:pointer;
background:#7cb342;
color:white;
}

.outline{
background:transparent !important;
border:2px solid white !important;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:120px 0;
}

section h2{
text-align:center;
margin-bottom:40px;
font-size:42px;
color:#1b5e20;
}

.about p{
max-width:800px;
margin:auto;
text-align:center;
font-size:20px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin-bottom:15px;
}

.steps{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.step{
width:150px;
height:150px;
background:#1b5e20;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-weight:bold;
}

.arrow{
font-size:40px;
color:#7cb342;
}

.notice{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.notice div{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

footer{
background:#1b5e20;
color:white;
text-align:center;
padding:50px;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

.hero h2{
font-size:42px;
}

}
.brand-hero{
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?q=80&w=1800');
background-size:cover;
background-position:center;
color:white;
margin-top:80px;
}

.brand-hero h1{
font-size:64px;
margin-bottom:20px;
}

.brand-hero p{
font-size:22px;
}

.brand-box{
max-width:900px;
margin:auto;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.brand-box p{
margin-bottom:20px;
font-size:18px;
}

.value-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.value-card{
background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.value-card h3{
margin-bottom:15px;
}

.timeline{
max-width:800px;
margin:auto;
}

.timeline-item{
background:white;
padding:25px;
margin-bottom:20px;
border-left:6px solid #7cb342;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.founder-section{
padding-bottom:150px;
}
/* MENU PAGE PREMIUM */

.menu-card{
position:relative;
overflow:hidden;
}

.menu-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:#7cb342;
}

.menu-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.menu-card h3{
font-size:24px;
color:#1b5e20;
margin-bottom:15px;
}

.menu-card p{
color:#666;
line-height:1.7;
}

.custom-step{
transition:.3s;
}

.custom-step:hover{
transform:scale(1.03);
}

.custom-step h3{
font-size:22px;
color:#1b5e20;
}

.sandwich-grid div{
transition:.3s;
}

.sandwich-grid div:hover{
transform:translateY(-8px);
}

.section-desc{
font-size:20px;
margin-bottom:50px;
color:#666;
}

.menu-hero{
position:relative;
}

.menu-hero::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:120px;
background:linear-gradient(
transparent,
#fafaf8
);
}
/* ORDER PAGE PREMIUM */

.order-desc{
text-align:center;
margin:20px 0 30px;
font-size:18px;
color:#666;
}

.order-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.option-grid,
.ingredient-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.option-grid div,
.ingredient-grid div{
background:#fafafa;
padding:25px;
border-radius:15px;
transition:.3s;
text-align:center;
}

.option-grid div:hover,
.ingredient-grid div:hover{
transform:translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.option-grid h4,
.ingredient-grid h4{
color:#1b5e20;
margin-bottom:15px;
font-size:20px;
}

.completion-box{
background:#1b5e20;
color:white;
padding:60px;
border-radius:25px;
text-align:center;
max-width:900px;
margin:auto;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.completion-box h3{
font-size:42px;
margin-bottom:20px;
}

.completion-box p{
font-size:20px;
margin-bottom:10px;
}
/* COMMUNITY PAGE */

.community-hero{
height:60vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1800');
background-size:cover;
background-position:center;
color:white;
margin-top:80px;
}

.community-hero h1{
font-size:64px;
}

.community-hero p{
font-size:22px;
margin-top:15px;
}

.community-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.community-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.community-card:hover{
transform:translateY(-8px);
}

.community-card h3{
color:#1b5e20;
margin-bottom:15px;
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.review-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
text-align:center;
font-size:20px;
}

.contact-box{
max-width:800px;
margin:auto;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-box form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-box input,
.contact-box textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.contact-box textarea{
height:180px;
resize:none;
}

.contact-box button{
padding:15px;
background:#1b5e20;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
font-size:16px;
}

.contact-box button:hover{
opacity:.9;
}

.menu-card{
max-width:450px;
margin:30px auto;
background:white;
padding:20px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
text-align:center;
}

.menu-image{
width:100%;
height:auto;
border-radius:15px;
}

.logo a{
text-decoration:none;
color:inherit;
}

.logo a:hover{
opacity:0.9;
}
/* MENU HERO */

.menu-hero{
height:60vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;

background:
linear-gradient(
rgba(0,0,0,.4),
rgba(0,0,0,.4)
),

url('https://images.unsplash.com/photo-1610970881699-44a5587cabec?q=80&w=1800');

background-size:cover;
background-position:center;

margin-top:80px;
}

.menu-hero h1{
font-size:64px;
margin-bottom:20px;
}

.menu-hero p{
font-size:22px;
}

/* ORDER HERO */

.order-hero{
height:60vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;

background:
linear-gradient(
rgba(0,0,0,.4),
rgba(0,0,0,.4)
),

url('https://images.unsplash.com/photo-1502741338009-cac2772e18bc?q=80&w=1800');

background-size:cover;
background-position:center;

margin-top:80px;
}

.order-hero h1{
font-size:64px;
margin-bottom:20px;
}

.order-hero p{
font-size:22px;
}