/*
Theme Name: LuxeGold
Author: Grok for Princess Mindy
Description: A luxurious black & gold feminine theme for affiliate projects.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:wght@400;500&display=swap');

body {
    font-family: 'Lora', serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #D4AF37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
}

header {
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
}

.site-logo {
    max-width: 200px;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    font-weight: 500;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #D4AF37;
}

.menu {
    display: flex;
}

footer {
    background: #000000;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #D4AF37;
    font-size: 0.8em;
}

/* Responsive */
@media (max-width: 767px) {
    nav .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000000;
        border-bottom: 2px solid #D4AF37;
    }

    nav .menu.active {
        display: flex;
    }

    nav li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

/* Homepage Hero */
.hero {
    background: url('path-to-gold-bg-image.jpg') center/cover no-repeat; /* Add your image */
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.affiliate-section {
    padding: 50px 20px;
    text-align: center;
}

.video-section {
    padding: 50px 20px;
}

video, iframe {
    max-width: 100%;
    height: auto;
}

/* Infinite Scroll (placeholder) */
.infinite-scroll-loading {
    text-align: center;
    padding: 20px;
    color: #D4AF37;
}