:root {
    --black: #000000;
    --gold: #C15A05A;
    --dark-blue: #2A2F3E;
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Montserrat', sans-serif;
}

body {
    background-color: var(--black);
    color: #fff;
    font-family: var(--secondary-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--primary-font);
    font-weight: 400;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
p { font-size: 1rem; }

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 90%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.navbar .logo {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--gold);
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: var(--gold);
}

.nav-icons img {
    height: 20px;
    filter: invert(1);
    margin-left: 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('https://via.placeholder.com/1920x1080/000000/C15A05A?text=Delanyvora+Hero+Image');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.hero-content .tagline {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.shop-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-button:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Brand Story Section */
.brand-story {
    padding: 8rem 10%;
    text-align: center;
    background-color: var(--dark-blue);
}

.brand-story h2 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 8rem 5%;
    background-color: var(--black);
    text-align: center;
}

.featured-products h2 {
    margin-bottom: 3rem;
    color: var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
}

.product-item img:hover {
    transform: scale(1.05);
}

.product-item h3 {
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 4rem 5%;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin: 0;
    color: var(--gold);
    font-size: 2rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1.5rem 5%;
        position: relative;
        width: 100%;
    }
    .navbar nav ul {
        gap: 1rem;
        margin-top: 1rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content .tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    .brand-story, .featured-products {
        padding: 5rem 5%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-info {
        margin-bottom: 2rem;
    }
    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}
