/* CSS Reset and Variables */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-text: #f5f5f7;
    --color-text-muted: #a1a1a6;
    --color-accent: #d4af37; /* Gold accent */
    --font-primary: 'Inter', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --transition-speed: 0.6s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: var(--spacing-md);
}

.btn:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}

.logo .accent {
    color: var(--color-accent);
    margin-right: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Mission Section */
.mission {
    background-color: var(--color-surface);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.8;
}

/* Collection Section */
.collection {
    background-color: var(--color-bg);
}

.product-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.product-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-text {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .product-row {
        flex-direction: row;
        padding: 0;
    }
    .product-row.row-reverse {
        flex-direction: row-reverse;
    }
    .product-image {
        width: 50%;
        height: 80vh;
    }
    .product-text {
        width: 50%;
        padding: var(--spacing-xl);
        text-align: left;
    }
}

/* CTA Section */
.cta {
    background-color: var(--color-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.waitlist-form {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form input {
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.waitlist-form input:focus {
    border-color: var(--color-accent);
}

.waitlist-form .btn {
    margin-top: 0;
}

@media (min-width: 600px) {
    .waitlist-form {
        flex-direction: row;
        max-width: 600px;
    }
    .waitlist-form input {
        flex-grow: 1;
    }
    .waitlist-form .btn {
        flex-shrink: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--color-bg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.copyright {
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity var(--transition-speed) ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}
/* CSS Reset and Variables */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-text: #f5f5f7;
    --color-text-muted: #a1a1a6;
    --color-accent: #d4af37; /* Gold accent */
    --font-primary: 'Inter', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --transition-speed: 0.6s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: var(--spacing-md);
}

.btn:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
}

.logo .accent {
    color: var(--color-accent);
    margin-right: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Mission Section */
.mission {
    background-color: var(--color-surface);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.8;
}

/* Collection Section */
.collection {
    background-color: var(--color-bg);
}

.product-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.product-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-text {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .product-row {
        flex-direction: row;
        padding: 0;
    }
    .product-row.row-reverse {
        flex-direction: row-reverse;
    }
    .product-image {
        width: 50%;
        height: 80vh;
    }
    .product-text {
        width: 50%;
        padding: var(--spacing-xl);
        text-align: left;
    }
}

/* CTA Section */
.cta {
    background-color: var(--color-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.waitlist-form {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form input {
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.waitlist-form input:focus {
    border-color: var(--color-accent);
}

.waitlist-form .btn {
    margin-top: 0;
}

@media (min-width: 600px) {
    .waitlist-form {
        flex-direction: row;
        max-width: 600px;
    }
    .waitlist-form input {
        flex-grow: 1;
    }
    .waitlist-form .btn {
        flex-shrink: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--color-bg);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.copyright {
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity var(--transition-speed) ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

