:root {
    --black: #1a1a1a;
    --white: #fafaf8;
    --gold: #d4af37;
    --grey: #666666;
    --light-grey: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.1);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f3 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
    transition: transform 0.6s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.tagline {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--black);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background-color: var(--black);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

/* Decorative Line */
.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
}

/* Section Title */
.section-title {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    position: relative;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Collection Section */
.collection {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f7 100%);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.collection-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--light-grey);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--gold);
}

.item-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.collection-item h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.collection-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .decorative-line {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin: 80px 0;
}

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

.contact-subtitle {
    font-family: var(--serif);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 400;
}

.contact-items,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-link,
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.contact-link:hover,
.social-link:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-link i,
.social-link i {
    font-size: 1.3rem;
}

.whatsapp:hover {
    border-color: #25D366;
    background-color: rgba(37, 211, 102, 0.1);
}

.instagram:hover {
    border-color: #E4405F;
    background-color: rgba(228, 64, 95, 0.1);
}

.facebook:hover {
    border-color: #1877F2;
    background-color: rgba(24, 119, 242, 0.1);
}

.tiktok:hover {
    border-color: #00f2ea;
    background-color: rgba(0, 242, 234, 0.1);
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 80px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, #c49a2e 100%);
    color: var(--black);
    text-decoration: none;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

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

    .about {
        padding: 80px 0;
    }

    .collection {
        padding: 60px 0;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-link,
    .social-link {
        min-width: 100%;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        max-width: 240px;
    }

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

    .about-text {
        font-size: 1rem;
    }

    .collection-item h3 {
        font-size: 1.4rem;
    }

    .contact-subtitle {
        font-size: 1.5rem;
    }
}
