/* Global Vars */
:root {
    --primary-color: #2c2c2c;
    --accent-color: #d4af37;
    /* Metallic Gold-ish */
    --bg-color: #f9f9f9;
    --text-color: #333;
    --card-bg: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section - Refactored for Animation */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Required for zoom effect */
}

/* Animated Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('./images/04.jpg') no-repeat center center/cover; */
    background-image: url('./images/04.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    animation: kenBurns 25s infinite alternate ease-in-out;
}

/* Dark Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    animation: floatLogo 6s ease-in-out infinite;
    /* Gentle floating */
}

.coming-soon {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    /* Adjusted since tagline removed */
    text-transform: uppercase;
    letter-spacing: 2px;

    /* Luxury Shine Effect */
    background: linear-gradient(90deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% auto;
    color: #fff;
    /* Fallback */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

/* Animations Keyframes */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}

/* Collection Section */
.collection {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Product Grid Update for Seamless Images */
.product-card {
    background: transparent;
    /* Removed white box */
    box-shadow: none;
    /* Removed shadow */
    overflow: visible;
    /* Let it breathe */
    transition: transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    /* Center content */
}

.product-card:hover {
    transform: translateY(-5px);
    /* No shadow on hover to keep it clean */
}

.card-image {
    height: auto;
    /* Let image define height or fixed aspect ratio */
    aspect-ratio: 3 / 4;
    /* Taller (portrait) aspect ratio to fit handles/base */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* No conflicting background */
    border-radius: 12px;
    /* Soft rounding on the image itself */
    margin-bottom: 15px;
    /* Space between image and text */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full image is visible, no cropping */
    transition: transform 0.5s ease;
    /* Optional: Mix blend mode to help white/grey backgrounds blend with page */
    /* mix-blend-mode: multiply; */
}

.product-card:hover .card-image img {
    transform: scale(1.03);
}

.card-details {
    padding: 0 10px;
    text-align: center;
}

.card-details h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.card-details p {
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}