* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    color: #292929;
    line-height: 1.65;
}

.box {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Nav */
.site-nav {
    background: #d35400;
    padding: 1.4rem 0;
    box-shadow: 0 3px 11px rgba(0,0,0,0.12);
}

.site-nav .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mark {
    font-size: 2.55rem;
    color: white;
    font-weight: 900;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.45rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #f39c12;
}

/* Intro */
.intro-section {
    background: linear-gradient(rgba(211, 84, 0, 0.88), rgba(211, 84, 0, 0.88)),
                url('https://images.unsplash.com/photo-1495195129352-aeb325a55b65?w=1600') center/cover;
    padding: 162px 30px;
    text-align: center;
    color: white;
}

.intro-overlay h1 {
    font-size: 3.8rem;
    margin-bottom: 1.35rem;
    font-weight: 900;
}

.intro-overlay p {
    font-size: 1.42rem;
    margin-bottom: 2.55rem;
    font-weight: 400;
}

.big-button {
    display: inline-block;
    background: white;
    color: #d35400;
    padding: 18px 52px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.12rem;
    transition: all 0.3s;
}

.big-button:hover {
    background: #fff8f0;
    transform: scale(1.06);
}

/* Collection */
.collection {
    padding: 90px 30px;
    background: #fff5e1;
}

.heading-area {
    text-align: center;
    margin-bottom: 3.9rem;
}

.heading-area h2 {
    font-size: 3.25rem;
    color: #d35400;
    margin-bottom: 0.85rem;
    font-weight: 900;
}

.heading-area p {
    font-size: 1.28rem;
    color: #555;
    font-weight: 600;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(358px, 1fr));
    gap: 2.75rem;
}

.item-box {
    background: white;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 6px 23px rgba(0,0,0,0.12);
    transition: all 0.3s;
}

.item-box:hover {
    transform: scale(1.04);
    box-shadow: 0 13px 38px rgba(0,0,0,0.17);
}

.item-pic img {
    width: 100%;
    height: 242px;
    object-fit: cover;
    display: block;
}

.item-description {
    padding: 1.95rem;
}

.item-description h3 {
    font-size: 1.58rem;
    color: #292929;
    margin-bottom: 1rem;
    font-weight: 900;
}

.item-description p {
    color: #666;
    margin-bottom: 1.32rem;
    line-height: 1.68;
    font-weight: 400;
}

.timing {
    display: flex;
    gap: 1.65rem;
    color: #d35400;
    font-weight: 900;
    font-size: 0.93rem;
}

/* Footer */
.bottom-area {
    background: #a04000;
    color: white;
    padding: 3.75rem 30px 1.75rem;
}

.footer-parts {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 3.7rem;
    margin-bottom: 2.75rem;
}

.footer-parts h3, .footer-parts h4 {
    margin-bottom: 1.35rem;
    font-weight: 900;
}

.footer-parts ul {
    list-style: none;
}

.footer-parts ul li {
    margin-bottom: 0.82rem;
}

.footer-parts a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-parts a:hover {
    color: white;
}

.bottom-text {
    text-align: center;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255,255,255,0.28);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav .box {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .intro-overlay h1 {
        font-size: 2.4rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-parts {
        grid-template-columns: 1fr;
    }
}

