/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
}





/* Navegación */
nav {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    padding: 10px 0;
    z-index: 1000;
}

.logo {
    margin-right: 1em;
    text-align: left;
    width: 50%;
    padding-left: 2em;
}

.logo img {
    height: 80px;
}

nav ul {
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: right;
    padding-top: 1.8em;
    padding-right: 2em;
}

nav ul li {
    margin: 0 1em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}






/* Hero */
.hero {
    background: url('media/principal_arco_oscura.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2em;
    margin-top: 5em;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.btn {
    background: #f39c12;
    color: white;
    padding: 0.7em 2em;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e67e22;
}






/* Secciones y Seccion de Atractivos */
section {
    padding: 4em 2em;
    padding-bottom: 0;
    text-align: center;
}

section h2 {
    margin-bottom: 1em;
    font-size: 2rem;
    color: #2c3e50;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-bottom: 2em;
    padding: 0 10%;
}

.card {
    background: white;
    padding-bottom: 2em;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.5s;
}

.card:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1em;
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 0.5em;
}

.card p {
    color: #3c546d;
    margin-bottom: 0.5em;
}






/* Modal (ventana emergente) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2em;
    text-align: center;
    border-radius: 10px;
    max-width: 50%;
    position: relative;
}

.modal-image {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.modal p {
    font-size: 1.2rem;
    margin-bottom: 2em;
}

.modal .btn {
    background: #2c3e50;
    color: white;
    padding: 0.7em 2em;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.modal .btn:hover {
    background: #f39c12;
}






/* Ubicacion */
#ubicacion {
    margin-bottom: 3em;
    background-color: #c4c4c4;
    padding-bottom: 2em;
    margin-bottom: 0;
}

#ubicacion p {
    margin-bottom: 2em;
}

#ubicacion iframe {
    width: 60%;
    height: 30em;
    border: 5px solid #2c3e50;
    border-radius: 8px;
}








/* Sección Redes Sociales */
#seguinos {
    padding: 4em 2em;
}

.social-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2em;
}

.social-left {
    flex: 1;
    min-width: 300px;
}

.social-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5em;
}

.social-left p {
    font-size: 1.2rem;
    margin-bottom: 1em;
}

.social-list {
    list-style: none;
    padding: 0;
}

.social-list li {
    margin: 0.5em 0;
    font-size: 1.2rem;
}

.social-list a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-list a:hover {
    color: #f39c12;
}

.social-right {
    flex: 1;
    min-width: 300px;
}

.social-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}










/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 4em 2em;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 1em;
    font-size: 1.5rem;
    color: #f39c12;
}

.footer-column p, 
.footer-column a,
.footer-column li {
    margin: 0.5em 0;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    list-style: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-column img {
    max-width: 260px;
}

.social-links {
    padding: 0;
}

.social-links li {
    margin: 0.5em 0;
}

.footer-copy {
    margin-top: 4em;
    font-size: 0.9rem;
    color: #ccc;
}








/* QUERYS */

@media (max-width: 650px) {

    nav {
        flex-direction: column;
    }

    .logo {
        text-align: center;
        width: 100%;
        padding-left: 0;
        margin-top: 1em;
    }

    nav ul {
        justify-content: center;
        width: 100%;
        padding-right: 0;
        font-size: 14px;
    }

    /*---------------------------*/

    .hero {
        padding-top: 5em;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /*---------------------------*/

    .modal {
        background: rgba(0, 0, 0, 0.85);
    }

    .modal-content {
        border-radius: 6px;
        max-width: 94%;
        padding: 0;
        padding-bottom: 1.5em;
    }

    .modal-image {
        border-radius: 6px;
        width: 100%;
        height: auto;
        margin-bottom: 1em;
    }

    .modal p {
        font-size: 1rem;
        padding: 0 0.8em;
    }

    /*---------------------------*/

    .gallery {
        padding: 0;
    }

    /*---------------------------*//*---------------------------*/

    #ubicacion iframe {
        width: 90%;
        height: 18em;
    }

}





/* ANIMACION SCROLLEAR */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

