/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #000;
}

/* ===== HEADER ===== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px 50px;
    border-bottom: 2px solid gold;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: gold;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: gold;
}

.hero-text p {
    margin: 15px 0;
    font-size: 1.2rem;
}

.btn {
    background-color: gold;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background-color: white;
}

/* ===== COLLECTIONS ===== */
.collections {
    text-align: center;
    padding: 60px 40px;
    background-color: #111;
}

.collections h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: gold;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    color: gold;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #000;
    padding: 40px 60px;
    border-top: 2px solid gold;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-container h3 {
    color: gold;
    margin-bottom: 15px;
}

.footer-container a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-container a:hover {
    color: gold;
}

.social a {
    margin-right: 15px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9rem;
}
