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

body {
    font-family: 'Montserrat', sans-serif;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/dibujo_lapiz.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
}

nav a {
    transition: all 0.5s ease;
}

nav a:hover {
    font-size: 103%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-button {
    background-color: #758365;
    color: white;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #5a6b4a;
}

.footer-bg {
    background-color: rgba(164, 176, 151, 0.31);
}

.header-bar-bg {
    background-color: rgba(164, 176, 151, 0.31);
}

.project-card-bg {
    background-color: rgba(164, 176, 151, 0.31);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }
}
