@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Color Theme Swatches in Hex */
.Website-for-Product-and-Industrial-Designer-1-hex {
    color: #56828c;
}

.Website-for-Product-and-Industrial-Designer-2-hex {
    color: #395359;
}

.Website-for-Product-and-Industrial-Designer-3-hex {
    color: #f2f2f2;
}

.Website-for-Product-and-Industrial-Designer-4-hex {
    color: #a6a6a6;
}

.Website-for-Product-and-Industrial-Designer-5-hex {
    color: #0d0d0d;
}

/* 
Azul: #56828c 
Grisaceo: #56828c
Blanco:   #f2f2f2
Gris: #A6A6A6
Negro: #0D0D0D
*/

html,
body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


a {
    color: white;
}

body {
    font-family: "Roboto", "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #333;
    background-image: url(./../img/wallpaper.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center center;  */
    background-attachment: fixed;
}

nav {
    background-color: rgb(51, 51, 51, 0.2);
    backdrop-filter: blur(20px);
    font-size: 1.2em;
    height: 8vh;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 100;
}

nav img {
    width: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

nav ul li {
    font-weight: 300;
}

.iconLogin {
    color: white;
    margin: 0 25px 0 0;
    height: 40%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}


#home {
    min-height: 93vh;
    position: relative;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh; /* Añadir espacio al final */
}

#mainlogo {
    width: 80vw; /* Ancho relativo al viewport */
    max-width: 800px; /* Máximo ancho permitido */
    aspect-ratio: 1 / 1; /* Mantiene la proporción cuadrada */
    background-image: url(../img/soundWave.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mainlogo h1 {
    font-weight: 100;
    font-size: clamp(2.5em, 5vw, 4em); /* Tamaño de fuente responsivo */
    color: white;
}

#mainlogo h1:hover {
    cursor: pointer;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
    transition: all 0.2s ease-in-out;
}

#info {
    box-shadow: 0px -5px 10px 0px rgb(0, 0, 0, 0.2);
    background-color: #f2f2f2ff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero styles */

#hero {
    display: flex;
    padding: 100px;
    color: #0d0d0d;
    gap: 30px;
}

#hero h2 {
    text-align: left;
    font-weight: 300;
    font-size: 3em;
    margin-bottom: 50px;
    color: #395359;
}

#hero p {
    text-align: left;
    font-size: 1.3em;
    color: #0d0d0d;
    margin-top: 5px;
    font-style: italic;
}

.hero-img {
    height: 500px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 0px rgb(0, 0, 0, 0.2);
}

.hero-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buttons {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.pushable {
    position: relative;
    background: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    width: fit-content;
    outline-offset: 4px;
    transition: filter 250ms;
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: hsl(226, 25%, 69%);
    border-radius: 8px;
    filter: blur(2px);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* 
PALETA DE COLORES
Blanco:   #f2f2f2
Azul: #56828c 
Grisaceo: #56828c
Gris: #A6A6A6
Negro: #0D0D0D
*/

.edge {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(to right,
            #39585f 0%,
            #507a83 8%,
            #507a83 92%,
            #38555c 100%);
}

.front {
    display: block;
    position: relative;
    border-radius: 8px;
    background: #56828c;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
    filter: brightness(110%);
}

.pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
    outline: none;
}


hr {
    background-color: rgb(166, 166, 166, 0.4);
    height: 2px;
    width: 90%;
    border-radius: 10px;
    border: none;
}

#podcast {
    padding: 0 100px;
}

.podcast-container {
    display: flex;
    gap: 50px;
}

.podcast-embed {
    display: flex;
    align-items: center;
}

.podcast-descrp {
    margin: 50px 0;
}

.podcast-descrp p {
    text-align: justify;
    font-size: 1.2em;
    font-weight: 300;
}




/* CSS notas */

#notesContainer {
    margin-bottom: 50px;
}

#notes {
    display: none;
    margin: 25px 0;
    padding: 20px;
    background-color: #f2f2f2;
    border: 1px solid #a6a6a6;
    border-radius: 8px;
    text-align: justify;
    font-size: 1em;
    font-weight: 300;
    color: #0d0d0d;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

#notes ul {
    list-style-type: disc;
    margin: 15px 0 0 30px;
}

#notes ul li {
    margin-bottom: 10px;
}

#notes ul li a {
    color: #56828c;
    font-weight: 500;
    transition: color 0.3s ease;
}

#notes ul li a:hover {
    color: #395359;
    text-decoration: underline;
}

/* Borrar hasta aqui para quitar estilos*/

.notesHidden {
    display: none;
    margin: 25px 0;
    text-align: justify;
    font-size: 1em;
    font-weight: 300;
    margin-right: 50px;
}

.notesHidden ul {
    list-style-type: disc;
    margin: 15px 0 0 50px;
}

.episodios {
    padding: 100px 0;
}

.episodios h2 {
    text-align: center;
    font-weight: 300;
    font-size: 3em;
    margin-bottom: 50px;
    color: #395359;
}

.grid-podcasts {
    display: flex;
    gap: 150px;
}

#contacto h2 {
    text-align: left;
    font-weight: 300;
    font-size: 3em;
    margin-bottom: 50px;
    color: #395359;
}

#contacto .pushable {
    margin: 0 auto;
    position: relative;
    background: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    width: fit-content;
    outline-offset: 4px;
    transition: filter 250ms;
}

#contacto {
    background-color: #f2f2f2;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contacto form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 5px 10px 0px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 50px;
}

#contacto label {
    font-size: 1.3em;
    font-weight: 300;
}

#contacto input {
    width: 100%;
    font-size: 0.9em;
    height: 40px;
    font-weight: 100;
    border-radius: 3px;
    padding: 0 10px;
    padding-top: 25x;
    border: none;
    background-color: #f3f3f3;
}

#contacto textarea {
    width: 100%;
    font-family: "roboto";
    font-size: 0.9em;
    height: 300px;
    resize: none;
    border-radius: 3px;
    padding: 10px;
    border: none;
    background-color: #f3f3f3;
}

/* 
Azul: #56828c 
Grisaceo: #56828c
Blanco:   #f2f2f2
Gris: #A6A6A6
Negro: #0D0D0D
*/

footer {
    background-color: #395359;
    color: white;
    font-weight: 300;
}

.footer-content {
    padding: 50px 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
}

footer p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: justify;
}

footer ul li {
    list-style: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials {
    display: flex;
    justify-content: left;
    gap: 20px;
}

.footer-links a,
.footer-socials a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: #56828c;
}

.footer-socials a {
    font-size: 16px;
}

.footer-socials a:hover {
    transform: scale(1.1);
    /* Agrandar el enlace social al pasar el mouse */
}

.copyright {
    background-color: hsl(191, 22%, 19%);
}

.copyright p {
    font-size: 0.9em;
    text-align: center;
    padding: 10px 0;
}


@media (max-width: 1480px) {
    #hero {
        flex-direction: column-reverse;
        align-items: center;
        padding: 50px;
    }

    #hero img {
        margin-bottom: 25px;
        width: 75%;
        height: 100%;
    }

    #podcast {
        padding: 0 50px;
    }

    .podcast-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0px;
    }


    .podcast-embed {
        justify-content: center;
        width: 70%;
    }


    hr {
        margin: 25px 0;
    }

    #episodios {
        padding: 0px 25px;
    }

    .grid-podcasts {
        display: flex;
        gap: 25px;
        flex-direction: column;
    }

    #contacto {
        padding: 50px;
    }

    .footer-content p {
        margin: 0px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-socials ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}


@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(64, 66, 73, 0.5);
        position: absolute;
        top: 8vh;
        left: 0;
        padding: 25px 0;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .iconLogin {
        margin-left: auto;
    }
}

@media (max-width: 780px) {
    #mainlogo {
        background-image: url(../img/soundWave.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mainlogo h1{
        font-size: 1.5em;
    }


    hr {
        margin: 50px 0;
    }

    .buttons {
        flex-direction: column;
    }

    .front {
        font-size: 1em;
        padding: 8px 16px;
    }

    .footer-content {
        padding: 25px;
    }

    #contacto h2,
    #episodios h2,
    #hero h2 {
        text-align: center;
        font-size: 1.8em;
    }

    #contacto {
        padding: 25px;
    }

    #contacto form {
        padding: 25px;
    }

    #podcast {
        width: 100%;
    }

    .podcast-container {
        width: auto;
    }

}