/* Basic Styles */
body {
    font-family: 'Lora', serif;
    margin: 0;
    background-color: #121212;
    color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
}

.logo-img {
    width: 150px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-left {
    flex: 1;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Hero Section */
.hero {
    background: url('../landing.png') no-repeat center center/cover;
    color: #fff;
    text-align: left;
    padding: 150px 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-left: 10%;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.btn {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 1rem;
}

/* Featured Brands */
.featured-brands {
    padding: 60px 0;
    text-align: center;
    background: #1a1a1a;
}

.featured-brands h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.brands-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brand-logo {
    font-size: 2.5rem;
    color: #aaa;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

/* New Arrivals */
.new-arrivals {
    padding: 80px 0;
    text-align: center;
}

.new-arrivals h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-item {
    background: #1a1a1a;
    border-radius: 5px;
    overflow: hidden;
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 20px 0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}