@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {
        --background: #F8F7F2;
        --text: #36322F;
        --primary: #B09B7B;
        --primary-hover: #9c8a6e;
        --glass-bg: rgba(248, 247, 242, 0.5);
    }

    body {
        @apply bg-background text-text;
        font-family: 'Lato', sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Cormorant Garamond', serif;
    }
}

@layer components {
    .btn-primary {
        @apply bg-primary text-white px-6 py-2 rounded-full hover:bg-primary-hover transition-all duration-300 ease-in-out transform hover:scale-105;
    }

    .glass-nav {
        @apply bg-glass-bg backdrop-blur-lg;
    }

    .filter-btn {
        @apply px-5 py-2 rounded-full text-sm font-semibold text-text/60 transition-all duration-300;
    }

    .filter-btn:hover {
        @apply text-text;
    }

    .filter-btn.active-filter {
        @apply bg-primary/10 text-primary;
    }
}

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

main {
    animation: fadeIn 0.8s ease-in-out;
}

.gallery-item picture {
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-item img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Marquee Styles */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.marquee-content span {
    padding: 0 2rem;
    color: var(--text--80);
}

@keyframes marquee {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
} 