@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f7;
    --accent-color: #d4af37; /* Gold accent for "Cinnamon" vibe */
    --nav-bg: rgba(0, 0, 0, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Background Setup */
.bg-wrapper {
    position: fixed;
    top: 0; /* Cover the entire screen to prevent bounce gaps */
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #000;
}

.bg-sharp, .bg-blurry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), /* Integrated Global Dark Tint */
        linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 90%, rgba(0,0,0,1) 100%),
        url('BG-Bony3.jpg');
    background-size: 85% auto;
    background-position: 0 70px; /* Anchor the image 70px down, below the navbar */
    background-repeat: no-repeat;
}

.bg-blurry {
    filter: blur(20px); /* Adjust intensity as needed */
    -webkit-mask-image: linear-gradient(to right, transparent 50%, black 90%);
    mask-image: linear-gradient(to right, transparent 50%, black 90%);
}

/* Gradient is now integrated into background-image above */

body {
    background-color: #000; /* Ensure the header area is black */
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.brand {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand:hover {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: calc(100vh - 70px);
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Align items to the right */
    text-align: right;    /* Align text to the right */
    padding: 0 10%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    animation: fadeInDown 1.2s ease-out;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
    opacity: 0.9;
}

.cta-button {
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 2s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Sections */
section {
    padding: 60px 10% 100px;
    background: transparent; /* Removed moving overlay */
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.press-quotes {
    margin-top: 50px;
}

.quote {
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 50px 10%;
    background: #000;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

/* Recent Singles Section */
.recent-singles {
    text-align: center;
    background: transparent;
}

.recent-singles h2 {
    margin-bottom: 30px;
    font-size: 1.8rem; /* Smaller font */
}

.singles-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 18px; /* Increased from 10px for a bit more air */
    max-width: 1000px;
    margin: 20px auto 40px; /* Reduced top margin */
    padding: 0 10px;
}

.single-item {
    flex: 0 1 30%;
    min-width: 75px; /* Slightly reduced to allow more gap space */
    max-width: 180px;
    text-align: center;
}

@media (min-width: 768px) {
    .singles-grid {
        flex-wrap: wrap;
        gap: 40px;
    }
    .single-item {
        flex: 0 1 180px; /* Fixed size on desktop to allow up to 6 per row */
    }
}

.single-link {
    text-decoration: none;
    color: var(--text-light);
    display: block;
}

.cover-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cover-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.single-link:hover .cover-container img {
    transform: scale(1.05);
}

.single-link:hover .play-overlay {
    opacity: 1;
}

.single-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.single-info p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

/* Store Page Styles */
.store-container {
    padding-top: 120px;
    min-height: 100vh;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.2);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image-secondary {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.buy-btn {
    margin-top: 20px;
    padding: 12px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--accent-color);
    color: #000;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .about { grid-template-columns: 1fr; }
    header { padding: 0 20px; }
    nav ul { display: none; } /* Could implement a hamburger menu later */
}
