/* Fuentes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Animaciones suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInUp 0.8s ease-out;
}

header h1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

header p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.location-card {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.location-card:nth-child(2) {
    animation-delay: 0.8s;
}

/* Efecto hover en tarjetas */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(111, 78, 55, 0.03) 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* Efecto de sombra suave */
.shadow-lg {
    box-shadow: 0 10px 40px -10px rgba(111, 78, 55, 0.15);
}

/* Transiciones suaves */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover en contacto */
.contact-item {
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d2bab0;
    transition: width 0.3s ease;
}

.contact-item:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .logo-container svg {
        width: 5rem;
        height: 5rem;
    }
    
    h1 {
        font-size: 1.875rem;
    }
}