/* ===========================
   A Taste of Jade
   Premium Homepage
=========================== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#faf9f5;
    color:#2f4f2f;
}

/* HERO */

.hero{

    max-width:1200px;

    margin:auto;

    text-align:center;

    padding:40px 20px 60px;

}

/* LOGO */

.hero-logo{

    width:360px;

    max-width:90%;

    display:block;

    margin:0 auto;

}

/* TAGLINE */

.tagline{

    margin-top:18px;

    color:#777;

    font-size:18px;

    letter-spacing:.5px;

}

/* GOLD LINE */

.divider{

    width:160px;

    height:3px;

    background:#caa646;

    margin:28px auto;

    border-radius:20px;

}

/* MAIN TITLE */

.hero h1{

    font-size:58px;

    color:#2d5b36;

    line-height:1.15;

    margin-bottom:20px;

    font-weight:700;

}

/* SUBTITLE */

.hero p{

    font-size:21px;

    color:#666;

    max-width:760px;

    margin:auto;

    line-height:1.7;

}

/* BUTTONS */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.buttons a{

    text-decoration:none;

}

.buttons button{

    background:#2d5b36;

    color:white;

    border:none;

    padding:16px 34px;

    border-radius:50px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.buttons button:hover{

    background:#3f7a47;

    transform:translateY(-3px);

}

/* PHOTO STRIP */

.photo-strip{

    max-width:1200px;

    margin:40px auto 80px;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    padding:0 20px;

}

.photo-strip img{

    width:320px;

    height:230px;

    object-fit:cover;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.photo-strip img:hover{

    transform:scale(1.03);

}

/* FOOTER */

footer{

    padding:35px;

    text-align:center;

    color:#777;

    font-size:16px;

}

/* MOBILE */

@media(max-width:768px){

.hero{

padding:25px 20px 45px;

}

.hero-logo{

width:260px;

}

.tagline{

font-size:15px;

}

.hero h1{

font-size:38px;

line-height:1.2;

}

.hero p{

font-size:17px;

}

.buttons{

flex-direction:column;

align-items:center;

gap:15px;

}

.buttons button{

width:270px;

}

.photo-strip{

gap:18px;

}

.photo-strip img{

width:100%;

height:220px;

}

}
