/* Custom styles for Peina2 */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Sidebar navigation */
.sidebar-nav {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 280px;
    background: #fff;
    border-right: 1px solid rgba(45, 45, 45, 0.1);
    display: none;
}

@media (min-width: 1024px) {
    .sidebar-nav {
        display: block;
    }
}

/* Logo */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* Navigation links */
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #E07A5F;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #E07A5F;
}

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

/* Mobile navigation links */
.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #E07A5F;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid transparent;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #E07A5F;
}

/* Service cards */
.service-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid rgba(45, 45, 45, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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