@charset "utf-8";
/* CSS Document */
:root {
    --gold: #c5a059;
    --dark: #0f0f0f;
    --light: #f4f4f4;
    --gray: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    align-items: center;
    background: rgba(15, 15, 15, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav a { color: var(--light); text-decoration: none; font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                /*url('https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?auto=format&fit=crop&w=1000&q=80');*/ /* Abstract Art Bg */
				url('piece-ONE.jpg?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

.tagline { font-style: italic; font-size: 1.2rem; color: #ccc; margin-bottom: 30px; }

/* Buttons */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    display: inline-block;
    transition: 0.3s;
}

.primary { background: var(--gold); color: var(--dark); }
.secondary { border: 1px solid var(--gold); color: var(--gold); }
.btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* Content Sections */
.container { padding: 80px 10%; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }

.cover-mockup {
    width: 300px;
    height: 450px;
    background: #1a1a1a;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-section { text-align: center; padding: 60px 10%; background: var(--gray); }
.video-container { margin-top: 30px; }

.buy-section { padding: 80px 10%; text-align: center; }
.links-grid { display: flex; justify-content: center; gap: 30px; margin-top: 40px; }

.buy-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    width: 250px;
    transition: 0.3s;
}

.buy-card img { height: 40px; margin-bottom: 15px; }
.buy-card:hover { background: #333; border: 1px solid var(--gold); }

footer { padding: 40px; text-align: center; font-size: 0.8rem; color: #777; }

/* Animations */
.fade-in { animation: fadeIn 2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}

