@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --rose-gold: #b76e79;
    --black: #0a0a0a;
    --zinc: #18181b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: #ffffff;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.nav-link {
    position: relative;
    color: #d4d4d8;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b76e79;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b76e79;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.hero-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a0a0f 100%);
    animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 1;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slideUp {
    animation: slideUp 1.2s ease-out forwards;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #b76e79 0%, #9d5c66 100%);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Collection Cards */
.collection-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(183, 110, 121, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.collection-card:hover {
    border-color: rgba(183, 110, 121, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.collection-card img {
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.08);
}

/* Process Cards */
.process-card {
    background: rgba(24, 24, 27, 0.3);
    border: 1px solid rgba(183, 110, 121, 0.1);
    transition: all 0.4s ease;
}

.process-card:hover {
    background: rgba(183, 110, 121, 0.1);
    border-color: rgba(183, 110, 121, 0.3);
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(183, 110, 121, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Form Styles */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #b76e79 !important;
    box-shadow: 0 0 0 2px rgba(183, 110, 121, 0.1);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
#mobileMenu {
    transition: all 0.3s ease;
}

#mobileMenu.active {
    display: block;
}

/* Testimonial */
.testimonial-slide {
    opacity: 0;
    animation: fadeInTestimonial 1s ease forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        padding: 14px 32px;
    }
}
