@charset "utf-8";

/*
    Gus & Luz Home Stylesheet
    Author: Jose Sanchez
    Date: 2/11/2026

    Filename: gl_styles1.css
*/


/* Fade-in Animation on Scroll*/
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.3s ease, transform 1.3s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in Animation */
.english {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1.3s ease forwards;
}

.spanish {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1.3s ease forwards;
}

.logo {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideIn 1.3s ease forwards;
}

.navigation {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1.3s ease forwards;
}

.main-img {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 1.3s ease forwards;
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Font Styles */
.bodoni-moda {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



/* HTML & Body Styles */
.mobile-wrapper {
    max-width: 500px;
    min-width: 320px;
    width: 100%;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    background-color: #e5f3fc;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
}


/* Language Button Styles*/
.es {
  display: none;
}

.language-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 10px 10px;
    justify-content: space-between;
}

.language-toggle p {
    font-size: 1.5rem;
}

.language-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.language-toggle .active {
  background-color: #e5f3fc;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px;
}


/* Logo Styles */

.logo {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.logo img{
    display: block;
    max-width: 60%;
    margin: 0 auto;
}

/* Navigation Menu Styles*/
.navigation {
    max-width: 100%;
    margin-bottom: 30px;
}

.navigation ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    justify-content: center;
}

.navigation a {
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    color: black;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin: 5px 0;
    background-color: #e5f3fc;
    border-radius: 5px;
}

.navigation a:hover {
    background-color: #cfedff;
}


/* Picture Styles */
.main-img {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
}

.intro-img {
    width: 85%;
    display: block;
    margin: 0 auto;
}

/* Name Styles */
.date {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    justify-self: center;
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    font-size: 1.3rem;
    text-shadow: 0px 1px black;
}

h2 {
    margin-top: 0;
    margin-bottom: 100px;

}

/* Footer Styles */
footer {
    text-align: center;
    background-color: #e5f3fc;
    padding: 10px 0;
    font-family: "Inter", sans-serif;
    border-radius: 20px 20px 0 0;
}

@media (max-width: 400px) {
    .navigation a {
        font-size: 1.2rem;
    }
}