/* STREAMING_CHUNK: Importing fonts and defining CSS variables... */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
--bg-color: #0a0a0a;
--surface-color: #141414;
--text-main: #f0f0f0;
--text-muted: #a0a0a0;
--accent-color: #d4af37; /* Muted Gold */
--accent-hover: #b5952f;
--font-sans: 'Inter', sans-serif;
--font-heading: 'Playfair Display', serif;
}

/* STREAMING_CHUNK: Resetting default browser styles and setting base typography... */

{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-sans);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3 {
font-family: var(--font-heading);
font-weight: 400;
margin-bottom: 1rem;
}

p {
margin-bottom: 1rem;
color: var(--text-muted);
}

a {
color: var(--text-main);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--accent-color);
}

/* STREAMING_CHUNK: Styling the header and navigation bar... */
header {
background-color: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
top: 0;
z-index: 100;
border-bottom: 1px solid #222;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 5%;
max-width: 1400px;
margin: 0 auto;
}

.logo {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 600;
letter-spacing: 1px;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.nav-links a.active {
color: var(--accent-color);
}

/* STREAMING_CHUNK: Creating the hero and main section layouts... /
main {
margin-top: 80px; / Offset for fixed header */
}

#hero {
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(rgba(10,10,10,0.3), rgba(10,10,10,0.8)), url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
}

.hero-content {
max-width: 800px;
padding: 0 20px;
}

.hero-content h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.hero-content p {
font-size: 1.2rem;
color: var(--text-main);
}

/* STREAMING_CHUNK: Styling sections, buttons, and forms... */
section {
padding: 5rem 5%;
max-width: 1400px;
margin: 0 auto;
}

section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}

.buy-btn, .submit-btn, .filter-btn {
background-color: var(--accent-color);
color: #000;
border: none;
padding: 0.8rem 1.5rem;
font-family: var(--font-sans);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
border-radius: 2px;
}

.buy-btn:hover, .submit-btn:hover {
background-color: var(--accent-hover);
transform: translateY(-2px);
}

input[type="email"], input[type="text"], textarea {
width: 100%;
padding: 1rem;
background: transparent;
border: 1px solid #333;
color: var(--text-main);
font-family: var(--font-sans);
margin-bottom: 1rem;
border-radius: 2px;
}

input:focus, textarea:focus {
outline: none;
border-color: var(--accent-color);
}

/* STREAMING_CHUNK: Setting up the grids for services and store... */
.services-grid, .store-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.service-card, .product-card {
background-color: var(--surface-color);
padding: 2rem;
text-align: center;
border: 1px solid #222;
transition: border-color 0.3s ease;
}

.service-card:hover, .product-card:hover {
border-color: var(--accent-color);
}

.product-card img {
width: 100%;
height: auto;
margin-bottom: 1.5rem;
}

.product-card h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.product-card p {
color: var(--accent-color);
font-weight: 600;
margin-bottom: 1.5rem;
}

/* STREAMING_CHUNK: Designing the portfolio gallery grid... */
.portfolio-filters {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.filter-btn {
background: transparent;
color: var(--text-muted);
border: 1px solid #333;
}

.filter-btn.active, .filter-btn:hover {
background: var(--accent-color);
color: #000;
border-color: var(--accent-color);
}

.portfolio-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 1rem;
}

.gallery-item {
position: relative;
aspect-ratio: 1 / 1;
overflow: hidden;
cursor: pointer;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.image-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.gallery-item:hover .image-overlay {
opacity: 1;
}

/* STREAMING_CHUNK: Styling the static newsletter section and footer... */
.newsletter-section {
background-color: var(--surface-color);
padding: 5rem 5%;
text-align: center;
border-top: 1px solid #222;
border-bottom: 1px solid #222;
}

.newsletter-content {
max-width: 600px;
margin: 0 auto;
}

.newsletter-form {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.newsletter-form input {
margin-bottom: 0;
flex-grow: 1;
}

footer {
background-color: #050505;
padding: 4rem 5%;
text-align: center;
border-top: 1px solid #111;
}

.footer-content a {
color: var(--accent-color);
}

.footer-wholesale {
margin: 2rem 0;
}

.footer-wholesale a {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-muted);
border: 1px solid #333;
padding: 0.5rem 1rem;
border-radius: 2px;
transition: all 0.3s ease;
}

.footer-wholesale a:hover {
color: var(--text-main);
border-color: var(--accent-color);
}

/* STREAMING_CHUNK: Adding styles for the legal page... */
.legal-content {
max-width: 800px;
margin: 4rem auto;
padding: 0 20px;
}

.legal-content h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.legal-content h2 {
font-size: 1.5rem;
margin-top: 3rem;
margin-bottom: 1rem;
color: var(--text-main);
}

.legal-content ul {
margin-left: 1.5rem;
margin-bottom: 1.5rem;
color: var(--text-muted);
}

.legal-content li {
margin-bottom: 0.5rem;
}

/* STREAMING_CHUNK: Styling the time-delayed bottom-corner newsletter bug... */
.newsletter-bug {
position: fixed;
bottom: 20px;
right: -400px; /* Hidden off screen initially */
width: 320px;
background: var(--surface-color);
padding: 2rem 1.5rem;
border: 1px solid #333;
box-shadow: 0 10px 30px rgba(0,0,0,0.8);
z-index: 998;
border-radius: 2px;
transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-bug.show {
right: 20px;
}

.newsletter-bug h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--accent-color);
font-family: var(--font-heading);
}

.newsletter-bug p {
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 1.5rem;
}

.bug-form {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.bug-form input {
margin-bottom: 0;
}

.close-bug {
position: absolute;
top: 10px;
right: 15px;
background: transparent;
border: none;
color: var(--text-muted);
font-size: 1.5rem;
cursor: pointer;
transition: color 0.3s;
}

.close-bug:hover {
color: #fff;
}

/* STREAMING_CHUNK: Styling the GDPR cookie consent banner... */
.cookie-banner {
position: fixed;
bottom: -150px;
left: 0;
width: 100%;
background: var(--surface-color);
border-top: 1px solid #333;
padding: 1.5rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 999;
box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
bottom: 0;
}

.cookie-banner p {
margin: 0;
font-size: 0.9rem;
max-width: 800px;
}

.cookie-buttons {
display: flex;
gap: 1rem;
}

/* STREAMING_CHUNK: Styling the Investment and Services page... */
.process-section, .pricing-section {
padding: 5rem 5%;
max-width: 1200px;
margin: 0 auto;
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.process-step {
text-align: left;
}

.step-number {
display: block;
font-family: var(--font-heading);
font-size: 3rem;
color: var(--accent-color);
opacity: 0.5;
margin-bottom: 1rem;
line-height: 1;
}

.process-step h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
align-items: center; /* Centers the highlighted card vertically */
}

.pricing-card {
background: #111;
border: 1px solid #333;
padding: 3rem 2rem;
border-radius: 4px;
position: relative;
text-align: left;
}

.pricing-card.featured {
border-color: var(--accent-color);
background: #1a1a1a;
transform: scale(1.05); /* Makes the middle card slightly larger */
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
z-index: 2;
}

.featured-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent-color);
color: var(--bg-color);
padding: 0.3rem 1rem;
font-size: 0.8rem;
font-weight: bold;
text-transform: uppercase;
border-radius: 20px;
letter-spacing: 1px;
}

.pricing-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.pricing-card .price {
font-size: 1.25rem;
color: var(--accent-color);
margin-bottom: 2rem;
font-weight: bold;
}

.package-details {
list-style: none;
margin-bottom: 2.5rem;
}

.package-details li {
margin-bottom: 1rem;
color: var(--text-muted);
font-size: 0.95rem;
position: relative;
padding-left: 1.5rem;
}

/* Custom checkmark list style */
.package-details li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent-color);
}

/* STREAMING_CHUNK: Configuring mobile responsiveness across all components... */
@media (max-width: 768px) {
nav {
flex-direction: column;
gap: 1rem;
padding: 1rem 5%;

.contact-container {
grid-template-columns: 1fr;
gap: 2rem;
}

.form-row {
grid-template-columns: 1fr;
gap: 0;
}

.contact-info h1 {
font-size: 2.5rem;
}
}

.nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-bug { 
    width: calc(100% - 40px); 
    right: -100%; 
    bottom: 20px;
}

.newsletter-bug.show { 
    right: 20px; 
}

.cookie-banner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.cookie-buttons {
    width: 100%;
}

.cookie-buttons button {
    flex: 1;
}

.pricing-card.featured {
    transform: scale(1); /* Removes the enlargement on small screens */
}


}