/* general reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #444;
    line-height: 1.6;
}
/* Navbar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: gold;
    padding: 1rem 2rem;
}

.navbar .logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0efef;
}
.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.navbar nav ul a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.navbar nav ul li:hover{
    text-decoration: underline;
}
/* home sec */
.home{
    background: url(./images/artawkrn-14Fe8RWznzg-unsplash.jpg);
    height: 70vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.home::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}
.home-content{
    position: relative;
    z-index: 1;
}
.home h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.btn{
    background: gold;
    color: #fff;
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}
.btn:hover{
    background: #d4af37;
}

/* Featured sec */
.featured{
    padding: 4rem 2rem;
    text-align: center;
}
.featured h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: gold;
}
.bead-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.bead-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.bead-card h3 {
    margin: 1rem 0 0.5rem;
    color: #d4af37;
}

.bead-card p {
    margin-bottom: 1rem;
    font-weight: bold;
}
.bead-card:hover {
    transform: scale(1.05);
}
/* About */
.about{
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}
.about h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}
.about p {
    margin-bottom: 1rem;
    color: goldenrod;
}
/* footer */
.footer{
    background: gold;
    text-align: center;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
}
.menu-toggle{
    font-size: 1.2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: none;
}

@media (max-width:768px) {
    .navbar nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3px;
        display: flex;
        padding: 0.2px;
    }
     nav ul.show{
        display: flex;
    }
    
    nav ul li{
        font-size: 12px;
        padding: 0.5pz;
    }
    .home h1{
        font-size: 2rem;
    }
    .home p{
        font-size: 0.8rem;
    }
    .btn{
        font-size: 1rem;
        padding: 0.2rem 1.1rem;
    }
    .menu-toggle{
        display: block;
    }
}

@media (max-width:480px) {
.home{
    height: 70vh;
}
.bead-card{
    height: 200px;
    margin-bottom: 3rem;
}
}