@import url('https://fonts.googleapis.com/css2?family=Lora&family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding:0;
}
body, html {
    margin: 0;
    padding: 0;
}


body {
    background-color: #F5EFE6;
    font-family: 'Lora', serif;
}
.text-test{
    justify-content: center;
    color: #f4f4f4;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}
h1{
    display: flex;
    justify-content:center;
}
.body { 
    padding-top: 9.8vh;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #50C878;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: white; /* color base */
    transition: color 0.3s;
}
.navbar a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}
.navbar a:hover {
    color: #FFDA44;
    transform: scale(1.1);
}
.logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}
.logo:hover {
    color: #FFDA44;
}
.logoText1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}
.logoText2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    margin-left: 0.2em; /* para separar un poco */
}

/* Ocultar checkbox */
#menu-toggle {
    display: none;
}

/* Botón hamburguesa */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Links del navbar */
.nav-links {
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #50C878;
        flex-direction: column;
        align-items: center;
        display: none;
        padding-bottom: 0.5rem;
    }
    #menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
    }
    .about{
        flex-direction:column;
        align-items:center;
    }
}

.inicio {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/ImagenWebInicio.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 6rem;
    color: white;
    text-align: center;
    gap: 20px;
}
.buttons-home {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.buttons-home button {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #FF7043;
    color: white;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s;
    outline: none;
    margin-top: 20px;
}
.buttons-home button:hover {
    transform: scale(1.1);
}
.inicio a {
    text-decoration: none;
}
.inicio a:hover {
    text-decoration: none;
}

#about {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f9f2e7;
}

.about {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-info {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}
.photoContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
}
.photoAbout {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    flex-shrink: 0;
}
.photoAcop{
    width: auto;
    height: 25vh;
    padding-top: 2vh;
}
.photoBlog-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 6vh;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    pointer-events: none; /* para que no interfiera */
}

.photoBlog {
    position: relative;
    width: 100%; 
    height: 62.5vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/imgBlog.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}
.about-text h1 {
    font-size: 6.5vh;
    margin-bottom: 0.4em;
}

.about-text h3 {
    font-size: 4vh;
    margin-bottom: 1.5em;
    font-weight: 600;
    color: #333;
}

.about-text p {
    line-height: 1.8;
    font-size: 2.5vh;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .about-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-text h1 {
        text-align: center;
    }
    .about-text p {
        text-align: justify;
    }
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 25px 75px;
}

.service {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 20px);
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    min-width: 300px;
    margin: 20px;
    padding-bottom:4vh;
}

.buttoninstagram, .buttonwhatsapp, .buttonmail {
    border: none;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5EFE6;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.buttoninstagram img, .buttonwhatsapp img, .buttonmail img {
    width: 5vh;
    background-color: #50C878;
}
.buttoninstagram:hover , .buttonwhatsapp:hover , .buttonmail:hover{
    transform: scale(1.1);
}

.contact-social {
    display: flex;
    gap: 1vh;
    flex-direction: row;
    background-color: #50C878;
    gap: 1.5vh;
}
footer {
    background-color: #50C878;
    padding: 0.5rem;
}
footer p {
    color: white;
    display: flex;
    justify-content: center;
}

.releases {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.release {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}
.release h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}
.release p {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}
/* Fecha en la esquina superior derecha */
.release h4 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px; /* Tamaño pequeño para la fecha */
    color: gray;
}

.buttonSession {
    align-self: flex-end;
    justify-content: center;
    background-color: #50C878;
    padding: 3vh;
    border-radius: 2vh;
    color: white;
    font-weight: bold;
    border: none;
    transition: transform 0.3s, color 0.3s;
    text-decoration: none;
    margin: 10px;
}
.buttonSession:hover {
    color: #FFDA44;
    transform: scale(1.1);
}

h1 {
    font-size: 8vh;
}
h2 {
    font-size: 4vh;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
