
body, html {
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    border-bottom: 0px solid #ccc;
    font-family: Arial, sans-serif;
    background-color: #c1aa7f;
    z-index: 1000; /* menor que el selector de idioma */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin-left: 16%; /* Visually aligns with your page content */
    margin-right: 16%; /* Visually aligns with your page content */
}

.site-name {
    font-size: 50px;
    color: white;
    font-family: "Quicksand", sans-serif;';
}

.right-box {
    display: flex;
    align-items: center;
    gap: 20px;
}


.contact-info {
    text-align: right;
    font-size: 14px;
    line-height: 1.2;
    color: white;
    padding-left: 40px;
}

.contact-label {
    font-size: .8125rem;
    font-family: Circular Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
    display: block;
    letter-spacing: 2px;
    text-align: right;
    text-transform: uppercase;
    color: white;
}


.contact-number {
    font-family: Miller Display,Georgia,serif;
    font-size: 1.125rem;
    letter-spacing: .5px;
    line-height: 1rem;
    color: white;
    font-weight: bold;
}




.custom-select-wrapper {
    font-family: Circular Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
    position: relative;
    display: inline-block;
    z-index: 1100; /* más alto que el menú */

}

.custom-select {
    background-color: #c1aa7f;
    color: white;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
}

.custom-select .dropdown {
    display: none;
    position: absolute;
    background-color: #e0d4bf;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border: 1px solid #aaa;
}

.custom-select:hover .dropdown {
    display: block;
}

.custom-select .dropdown div {
    padding: 10px;
    cursor: pointer;
}

.custom-select .dropdown div:hover {
    background-color: #b79c6f;
}


.custom-select.hide-once .dropdown {
    display: none !important;
}


.custom-select .selected {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;      /* Prevent text from wrapping */
    gap: 6px;                 /* Space between text and arrow */
    cursor: pointer;
}

.custom-select .arrow {
    font-size: 0.75em;
    color: #ccc;
    pointer-events: none;
}

.site-link {
    text-decoration: none; /* quita la línea */
    color: inherit; /* mantiene el color del texto tal cual */
}

.site-link:hover .site-name {
    color: #f39c12; /* ejemplo: naranja al hover */
}


@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: flex-start;
        padding: 5px;
        margin: 0;
    }

    .site-name {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .right-box {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .contact-info {
        text-align: left;
        padding-left: 20px;
    }

    .contact-label {
        font-size: .5525rem;
        font-family: Circular Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
        display: block;
        letter-spacing: 1px;
        text-align: right;
        text-transform: uppercase;
        color: white;
    }


    .contact-number {
        font-family: Miller Display,Georgia,serif;
        font-size: 0.5rem;
        letter-spacing: .5px;
        line-height: 1rem;
        color: white;
    }

    .custom-select {
        width: 90%;
        margin-left: 5px;
    }

    .custom-select .dropdown {
        width: 100%;
    }

    .custom-select-wrapper {
        font-family: Circular Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
        position: relative;
        display: inline-block;
        z-index: 1100; /* más alto que el menú */
        margin-left: auto;
    }
}

