:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2d2d2d;
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --tertiary-gold: #B8860B;
    --accent-gold: #DAA520;
    --text-gray: #333333;
    --light-gray: #555555;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-black);
    color: var(--bg-light);
    overflow-x: hidden;
}

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

h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Particle Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 1.5s ease-out;
}

.loading-logo {
    font-size: 4rem;
    color: var(--primary-gold);
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    animation: slideInUp 1s ease-out 0.5s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.loading-subtitle {
    font-size: 1rem;
    color: var(--bg-light);
    margin-top: 0.5rem;
    animation: fadeIn 1s ease-out 1s both;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes fadeInScale {
    0% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes slideInUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Navigation */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--bg-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-align: left;
}

.hero-image {
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.8s both;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 500px;
    background: #000;
    border-radius: 25px;
    border: 8px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-image video {
    width: 264px;
    height: 484px;
    object-fit: cover;
    border-radius: 17px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--bg-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-gold {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    color: var(--primary-black);
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bg-light);
}

.about-image {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
}

/* Collections Section */
.collection-card {
    background: var(--secondary-black);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.collection-card:hover::before {
    left: 100%;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.collection-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.collection-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.collection-description {
    color: var(--bg-light);
    line-height: 1.6;
}

/* Products Showcase Section */
.products-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.product-card {
    background: var(--secondary-black);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

.product-image {
    height: 300px;
    background: linear-gradient(45deg, var(--tertiary-black), var(--secondary-black));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image::before {
    left: 100%;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.8;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--bg-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--primary-gold);
}

.rating-text {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.products-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.product-item {
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--tertiary-black) 0%, var(--secondary-black) 100%);
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--secondary-black);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
}

.testimonial-stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--bg-light);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

.contact-form {
    background: var(--tertiary-black);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-control {
    background: var(--secondary-black);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--bg-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: var(--secondary-black);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    color: var(--bg-light);
}

.form-control::placeholder {
    color: var(--light-gray);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--tertiary-black);
    padding: 3rem 0 1rem;
}

.footer-links a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links a {
    color: var(--bg-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-gold);
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .collection-card {
        margin-bottom: 1rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-image {
        height: 50vh;
    }

    .hero-image::before {
        width: 200px;
        height: 350px;
    }

    .hero-image video {
        width: 184px;
        height: 334px;
    }

    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
        padding-top: 8rem;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}