@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background-color: #000;
    color: white;
}

/* HEADER */
header {
    background-color: #000;
    background-image: url("media/saeta/fondo-logo.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 10px 20px 20px;
}

.logo {
    width: 350px;
    max-width: 90%;
    display: block;
    margin: 0 auto;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000;
    border-top: 1px solid rgba(241, 196, 15, 0.25);
    border-bottom: 1px solid rgba(241, 196, 15, 0.25);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li a {
    font-family: 'Cinzel', serif;
    padding: 10px 20px;
    display: block;
    color: #F1C40F;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: white;
}

/* HAMBURGUESA */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #F1C40F;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* CONTACTO */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: auto;
}

.contact-container h1 {
    color: #F1C40F;
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.contact-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    background: #000;
    border: 1px solid #F1C40F;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 8px rgba(241, 196, 15, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    margin-top: 10px;
    background: #F1C40F;
    color: black;
    border: none;
    padding: 14px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
}

/* SEPARADOR */
.separador-dorado {
    height: 2px;
    width: 80%;
    margin: 40px auto;
    background: #F1C40F;
}

/* EXTRA CONTACTO */
.extra-contacto {
    text-align: center;
    padding: 60px 20px 90px;
}

.extra-contacto h1 {
    color: #F1C40F;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 850px;
    margin: auto;
}

.card {
    border: 1px solid #F1C40F;
    padding: 30px 25px;
    width: 240px;
    min-height: 150px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.3);
    border-color: white;
}

.card h2 {
    color: #F1C40F;
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.card p {
    color: #ccc;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

/* FOOTER ULTRA SIMPLE */
.footer{
    background:#000;
    border-top:1px solid #F1C40F;
    margin-top:50px;
    padding:25px 20px 12px;
}

/* contenedor */
.footer-container{
    max-width:900px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/* logo */
.footer-logo{
    width:115px;
}

/* títulos */
.footer-col h3{
    color:#F1C40F;
    font-size:1rem;
    margin-bottom:10px;
}

/* listas */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:6px;
}

/* enlaces */
.footer-col a,
.footer-social a{
    color:#ddd;
    text-decoration:none;
    font-size:0.92rem;
}

.footer-col a:hover,
.footer-social a:hover{
    color:#F1C40F;
}

/* redes */
.footer-social{
    display:flex;
    flex-direction:column;
    gap:6px;
}

/* abajo */
.footer-bottom{
    text-align:center;
    margin-top:18px;
    padding-top:10px;
    border-top:1px solid rgba(241,196,15,.12);
    color:#777;
    font-size:0.68rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .nav-container {
        min-height: 60px;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-bottom: 1px solid rgba(241, 196, 15, 0.25);
    }

    nav ul.active {
        max-height: 500px;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        padding: 15px;
        width: 100%;
        border-top: 1px solid rgba(241, 196, 15, 0.2);
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        max-width: 90%;
    }

    .contact-container h1,
    .extra-contacto h1 {
        font-size: 1.8rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-container{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

}