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

body{
    font-family:Georgia, serif;
    background:#24160f;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;

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

    padding:25px 8%;

    background:rgba(24,16,11,.95);
    backdrop-filter:blur(10px);

    border-bottom:2px dashed #c9a66b;
}

.logo{
    font-size:28px;
    color:#f6d8a8;
    letter-spacing:4px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    transition:.3s;
}

nav a:hover{
    color:#c9a66b;
}

/* HERO */

.hero{
    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:120px 8%;

    background:
    radial-gradient(circle at top left,
    #4d3325,
    #24160f);
}

.tag{
    color:#c9a66b;
    letter-spacing:3px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
    color:#f6d8a8;
}

.hero p{
    line-height:1.8;
    max-width:500px;
}

.btn{
    display:inline-block;

    margin-top:30px;

    padding:15px 35px;

    border-radius:40px;

    background:#c9a66b;
    color:#24160f;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

.hero-slider{
    height:650px;

    overflow:hidden;

    border-radius:25px;

    border:3px dashed #c9a66b;

    box-shadow:
    0 20px 50px rgba(0,0,0,.5);
}

.slide-track{
    display:flex;
    flex-direction:column;
    animation:slide 12s infinite;
}

.slide-track img{
    width:100%;
    height:650px;
    object-fit:cover;
}

@keyframes slide{

    0%,30%{
        transform:translateY(0);
    }

    33%,63%{
        transform:translateY(-650px);
    }

    66%,100%{
        transform:translateY(-1300px);
    }

}

/* STITCH */

.stitch{
    height:12px;

    background:
    repeating-linear-gradient(
    90deg,
    #d7b27d 0px,
    #d7b27d 15px,
    transparent 15px,
    transparent 30px
    );
}

/* GALLERY */

.gallery{

    padding:100px 8%;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.card{

    background:#3a2418;

    padding:12px;

    border-radius:20px;

    border:2px dashed #c9a66b;

    overflow:hidden;

    transition:.4s;
}

.card:hover{

    transform:
    translateY(-10px)
    scale(1.02);
}

.card img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:15px;

    transition:.5s;
}

.card:hover img{
    transform:scale(1.08);
}

/* CRAFT */

.craft{

    padding:120px 8%;

    display:flex;
    justify-content:center;
}

.craft-box{

    max-width:900px;

    text-align:center;

    background:#3a2418;

    padding:60px;

    border-radius:20px;

    border:2px dashed #c9a66b;
}

.craft-box h2{

    color:#f6d8a8;

    font-size:42px;

    margin-bottom:20px;
}

/* FOOTER */

footer{

    background:#18100b;

    padding-top:70px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:40px;

    padding:0 8% 60px;
}

.footer-grid h3{

    color:#f6d8a8;

    margin-bottom:20px;
}

.footer-grid p{

    line-height:1.8;
}

.qr{

    width:180px;
    height:180px;

    background:white;

    padding:10px;

    border-radius:20px;
}

.qr img{

    width:100%;
    height:100%;
}

.social{

    display:flex;
    gap:15px;
}

.social a{

    width:55px;
    height:55px;

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

    border-radius:50%;

    background:#3a2418;

    border:2px dashed #c9a66b;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.social a:hover{

    background:#c9a66b;
    color:black;
}

.copyright{

    text-align:center;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.1);
}

/* MOBILE */

@media(max-width:900px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero h1{
        font-size:48px;
    }

    .hero-slider{
        height:450px;
    }

    .slide-track img{
        height:450px;
    }

    nav{
        display:none;
    }
}