/* Variables de colores básicos */
:root {
    --primary-color: #14B5C5;
    --white: #ffffff;
    --text-dark: #333333;
    --light-gray: #f8f9fa;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: var(--white);
    color: var(--primary-color);
    text-align: center;
    padding:1rem 0 0 0;
}

.header-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    fill: #14B5C5;
}

header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.25rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2em;
}

header p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0.5rem auto;
    padding: 0 1rem;
    min-height: 100vh;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--primary-color);
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

footer p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo {
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    header h1 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .fourvenues-container {
        margin: 1rem;
        padding: 1rem;
    }
    
}

@media (max-width: 480px) {
    .header-logo {
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    header h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}