/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Nunito:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

/* Soft decorative line */
.soft-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4A5A5, transparent);
    margin: 1.5rem auto;
}

.soft-line-left {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, #D4A5A5, transparent);
    margin: 1.5rem 0;
}

/* Nav link effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #D4A5A5;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Gallery hover */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    transition: all 0.5s ease;
}

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

/* Cards */
.soft-card {
    transition: all 0.4s ease;
}

.soft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(180, 140, 130, 0.15);
}

/* Buttons */
.btn-soft {
    transition: all 0.3s ease;
}

.btn-soft:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.3);
}

/* Mobile menu */
.menu-toggle span {
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.fade-in {
    animation: fadeInUp 0.8s ease both;
}

/* Category button */
.category-btn.active {
    background-color: #D4A5A5;
    border-color: #D4A5A5;
    color: white;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDF8F6;
}

::-webkit-scrollbar-thumb {
    background: #D4A5A5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C49494;
}
