@charset "utf-8";

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

    Filename: gl_styles3.css
*/

/* Font Styles */
.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}

.corinthia-bold {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-style: normal;
}

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

/* 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 */
.logo {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideIn 1.3s ease forwards;
}

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

.title, .location {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1.3s ease forwards;
}


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


/* HTML & Body Styles */

.mobile-wrapper {
    max-width: 500px;
    min-width: 320px;
    width: 100%;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

html {
    background-color: #e5f3fc;
}

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

h1, h2 {
    text-decoration: underline #e5f3fc;
}


/* 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-weight: 400;
    font-size: 1.4rem;
    margin: 5px 0;
    background-color: #e5f3fc;
    border-radius: 5px;
}

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


/*Title Styles*/
.title {
    text-align: center;
    font-size: 1.8rem;
}

.title p {
    font-size: 1.3rem;
    padding: 0 30px;
}

h2 {
    margin-bottom: 5px;
}

/* Information Styles */
.info, .location, .add-info {
    margin: 0 auto;
    width: 90%;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    border-top: 3px solid #e5f3fc;
}

p {
    line-height: 1.6rem;
}

/* Venue Styles */
.venue {
    display: flex;
    align-items: end;
    justify-content: center;
    margin: 0 auto;
    background-image: url(gallery/villa.png);
    background-position: center;
    background-size: cover;
    width: 90%;
    height: 17rem;
    border-radius: 10px;
    margin-bottom: 50px;
}

.button {
    padding: 1rem;
    background-color: #e5f3fc;
    box-shadow: inset -2px -2px 6px #cfedff,
        inset 2px 2px 6px white,
        2px 2px 2px rgb(192, 192, 192);
    color: rgb(0, 0, 0);
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-radius: 10px;
    text-decoration: none;
}




/* Footer Styles */
footer {
    text-align: center;
    background-color: #e5f3fc;
    padding: 10px 0;
    border-radius: 20px 20px 0 0;
}

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