body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #fdf1db;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

header p {
    margin: 0 2rem 0;
}

header a {
    color: #0066cc;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

main {
    background-color: #fdf1db;
}

#whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-popup a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#whatsapp-popup img {
    width: 70%;
    height: 70%;
}

#whatsapp-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

nav {
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6rem;
    background-color: #871129;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav img {
    height: 90px;
    width: auto;
}

#menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #ffde59;
}

nav a:hover {
    color: #0066cc;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #ffde59;
    cursor: pointer;
}

#menu-toggle:focus {
    outline: none;
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    nav {
        padding: 10px 1rem;
    }

    #menu {
        display: none;
        flex-direction: column;
        background-color: #871129;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    #menu a {
        margin: 10px 0;
    }

    #menu.show {
        display: flex;
    }

    #menu-toggle {
        display: block;
    }
}

#hero div {
    padding: 6rem 6rem;
}

#hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url("../img/wugang-background.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero h1 {
    font-size: 2em;
    color: #f2f2f2;
    margin: 10px 0;
}

#hero h2 {
    font-size: 1.5em;
    color: #ffde59;
    margin: 10px 0;
}

#hero button {
    padding: 10px 20px;
    background-color: #871129;
    color: #ffde59;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

#hero button:hover {
    background-color: #871129;
}

@media (max-width: 768px) {
    #hero div {
        padding: 3rem 2rem;
    }

    #hero {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url("../img/wugang-background-mobile.webp");
    }

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

    #hero h2 {
        font-size: 1.2em;
    }
}

#info {
    background-color: #fdf1db;
    padding: 6rem 8rem;
}

.info {
    display: flex;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-availability {
    padding: 30px;
    gap: 20px;
}

.availability {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
    padding: 15px;
    align-items: center;
}

.availability span {
    padding-right: 20px;
}

.info-inner {
    border-left: 3px solid #ffde59;
    padding-left: 20px;
}

.info-inner span {
    color: #871129;
    font-size: 20px;
}

#info h1 {
    font-size: 2em;
    text-align: center;
}

#info h2 {
    font-size: 1.2em;
    color: #666;
}

#info img {
    width: 100%;
    max-height: 700px;
    max-width: 700px;
}

#info button {
    padding: 10px 20px;
    background-color: #871129;
    color: #ffde59;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

#info button:hover {
    background-color: #871129;
}

/* Responsive Design */
@media (max-width: 768px) {
    #info {
        padding: 2rem;
    }

    .info {
        flex-direction: column;
    }

    .info img {
        order: 1;
        max-height: auto;
        margin-bottom: 20px;
    }

    .info-card {
        order: 2;
    }

    .availability {
        flex-direction: column;
        text-align: center;
    }

    .availability span {
        padding-right: 0;
        margin-bottom: 10px;
    }

    #info button {
        margin-top: 20px;
        width: 100%;
    }
}

#services {
    padding: 90px 0;
    margin-top: 20px;
    text-align: center;
    background-color: #f2f2f2;
}

#services h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

#services h2 {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

#services div {
    display: inline-block;
    width: 30%;
    margin: 10px;
    padding-bottom: 40px;
    text-align: center;
}

#services img {
    width: 50px;
}

#services button {
    padding: 10px 15px;
    background-color: #871129;
    color: #ffde59;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

#services button:hover {
    background-color: #871129;
}

#about {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding: 90px 0;
}

.pic {
    height: auto;
    width: 400px;
    border-radius: 12px;
}

.about-us {
    width: 1130px;
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.text {
    width: 540px;
}

.text h2 {
    color: #333;
    font-size: 90px;
    font-weight: 600;
    margin-bottom: 10px;
}

.text h5 {
    color: #333;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.text p {
    color: #333;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1px;
}

.data {
    margin-top: 30px;
}

.hire {
    font-size: 18px;
    background: #871129;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    transition: 0.5s;
}

.hire:hover {
    background: #000;
}

@media (max-width: 768px) {
    #about {
        height: auto;
    }

    .about-us {
        flex-direction: column;
        text-align: center;
    }

    .pic {
        width: 80%;
        margin-bottom: 20px;
    }

    .text {
        width: 100%;
    }

    .text h2 {
        font-size: 50px;
    }

    .text h5 {
        font-size: 18px;
    }

    .text p {
        font-size: 16px;
        line-height: 22px;
    }

    .hire {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Diseño adicional para pantallas muy pequeñas */
@media (max-width: 480px) {
    .text h2 {
        font-size: 36px;
    }

    .text h5 {
        font-size: 16px;
    }

    .text p {
        font-size: 14px;
    }

    .hire {
        font-size: 14px;
        padding: 8px 15px;
    }
}

#contact {
    background: url("../img/wugang-hero.webp") center center no-repeat;
    background-size: cover;
    display: grid;
    align-items: center;
    justify-items: center;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
}

.contact-us {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 100px;
    border-top: 10px solid #ffcc00;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

#thankYouMessage {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 100px;
    border-top: 10px solid #28a745;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

#thankYouMessage h1 {
    color: #28a745;
    font-size: 24px;
    margin: 0;
}

label,
input,
textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

input,
textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    background: #f9f9f9;
}

input:focus,
textarea:focus {
    border: 1px solid #ffcc00;
}

textarea {
    resize: none;
}

h3 {
    font-size: 12px;
    font-style: italic;
    margin: 10px 0;
    color: #666;
}

em {
    color: #ffcc00;
    font-weight: bold;
}

button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: #871129;
    color: #ffde59;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background: #871129;
    color: #ffde59;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #871129;
    color: #ffde59;
    font-size: 0.9em;
}