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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.banner{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(45.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.navbar{
    width: 85%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.logo{
    width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
} 

.navbar ul li a{
    text-decoration: none;
    color: #d4b16a;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #f0c75e;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #d4b16a, #f0c75e);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
    display: block;
    margin: auto;
    border-radius: 2px;
}

.navbar ul li:hover::after{
    width: 100%;
}

.content{
    width: 100%;
    position: absolute;
    top: 47%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #d4b16a;
}

.content h2{
    color: #f0c75e;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.content h1{
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content p{
    margin: 10px 0 30px;
    font-size: 50px;
    color: #ffffff;
    font-family: 'Great Vibes', cursive;
    font-size: 2.0rem;
}

button{
    display: inline-block;
    text-decoration: none;
    color: #f0c75e;
    border: 2px solid #f0c75e;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

button:hover{
    border: 2px solid #f0c75e;
    background: linear-gradient(135deg, #d4b16a, #f0c75e);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 177, 106, 0.3);
}

.content h3{
    margin: 90px 0 5px;
    font-size: 15px;
    color: black;
    font-family: 'Playfair Display', serif;
}

.card-container {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
    color: #f0c75e;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 177, 106, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(212, 177, 106, 0.3);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-content {
    padding: 20px;
}

.card-title {
    padding: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin-bottom: 10px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4b16a;
    font-family: 'Inter', sans-serif;
}

.gallery-section {
    display: none;
    padding: 30px 10px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-section.active {
    display: block;
}

.gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #d4b16a;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px 0;
}

.scroll-gallery img {
    height: 300px;
    flex: none;
    border-radius: 12px;
    scroll-snap-align: start;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #d4b16a;
}

footer {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    text-align: center;
    padding: 30px;
    border-top: 2px solid #d4b16a;
    color: #666;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 15px 0;
    }
    
    .logo {
        width: 120px;
    }
    
    .navbar ul li {
        margin: 0 10px;
    }
    
    .navbar ul li a {
        font-size: 0.8rem;
    }
    
    .content h1 {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 0.9rem;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 15px;
    }
    
    .card-title {
        font-size: 1rem;
        padding: 12px;
    }
    
    .price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .card-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .navbar ul li {
        margin: 0 5px;
    }
    
    .navbar ul li a {
        font-size: 0.7rem;
    }
}
            