/* Reset + Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 3px solid #ff7200;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7200;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff7200;
    transition: all 0.3s ease;
}

/* Toggle animation */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Nav menu */
.menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #ff7200;
}

/* Search box */
.search {
    display: flex;
    align-items: center;
    gap: 5px;
}

.srch {
    background: transparent;
    border: 1px solid #ff7200;
    padding: 6px 10px;
    color: #fff;
    border-radius: 5px;
}

.btn {
    background: #ff7200;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #e56b00;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: url('background.png') center/cover no-repeat;
    position: relative;
    padding: 80px 60px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2rem;
    line-height: 1.5;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 15px;
}

/* Collections */
.collection {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.collection h2 {
    color: #ff7200;
    margin-bottom: 30px;
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: #ff7200;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    margin-top: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e56b00;
}

/* Responsive Layouts */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 25px;
    }

    .menu ul {
        gap: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-image img {
        width: 300px;
        margin-top: 25px;
    }
}

/* Tablets & below */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 75px;
        left: 0;
        text-align: center;
        padding: 20px 0;
    }

    .menu.active {
        display: block;
        animation: slideDown 0.4s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .search {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}

/* Phones */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-image img {
        width: 220px;
    }

    .grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}