* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'InstrumentSans', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1;
    min-height: 100vh;
    width: 100%;
}

a {
    position: relative;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
    width: fit-content;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease-in-out;
}

a:hover {
    transform: translateY(-3px);
}

a:hover::after {
    width: 100%;
}

.no-effect::after {
    display: none;
}

h1 {
    font-family: 'PerfectlyVintage', sans-serif;
    font-size: 5rem;
}

h2 {
    font-family: 'PerfectlyVintage', sans-serif;
    font-size: 3rem;
    color: #912933;
}

h3 {
    font-family: 'InstrumentSans', sans-serif;
    font-size: 1.75rem;
    color: #eda325;
}

th {
    font-family: 'InstrumentSans', sans-serif;
    font-size: 1.5rem;
}

p, a {
    font-size: 1.25rem;
}

input, textarea, select, td {
    font-family: 'InstrumentSans', sans-serif;
}

select {
    font-family: 'InstrumentSans', sans-serif;

}

.outline {
    font-size: 3.75rem;
    color: #912933; 
    -webkit-text-stroke: 1px white;
}

@font-face {
    font-family: 'Magules';
    src: url('../font/Magules.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PerfectlyVintage';
    src: url('../font/PerfectlyVintage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InstrumentSans';
    src: url('../font/InstrumentSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'InstrumentSans';
    src: url('../font/InstrumentSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.content {
    width: 100vw;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
    border-bottom: 1px solid;
    border-top: 1px solid;
}

.red {
    background-color: #912933;
    color: white;
}

.peach {
    background-color: #fcecdf;
    color: black;
}

.white {
    background-color: #ffffff;
    color: black;
}

header {
    position: fixed;
    top: 0;
    width: 90%;
    z-index: 1000;
    padding-top: 15px;
    transition: transform 0.3s ease-in-out;
}

.hidden {
    transform: translateY(-100%);
}

nav {
    width: 100%;
    background-color: white;
    gap: 0px;
    padding: 5px 20px;
    border: 1px solid;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5% 2%;
}

nav a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
}

.nav-main {
    display: flex;
    align-items: center;
}

.nav-socials a {
    padding: 0px 5px;
}

.nav-socials img {
    height: 25px;
    padding: 0px;
    transition: opacity 0.3s;
}

.nav-links .nav-item.active {
    text-decoration: underline;
    font-weight: bold;
}


#main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #912933;
    color: white;
    padding: 5%;
    flex-wrap: wrap;
    width: 100vw;
    max-width: 100%;
    margin: 0;
}

#footer-logo {
    flex: 2;
    text-align: left;
}

.footer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: right;
    line-height: 1.3;
}

.footer-info p {
    font-size: 1rem;
}

.footer-info a {
    color: white;
    font-size: 1rem;
}

.footer-info a::after {
    background-color: white;
}

#cpr {
    padding: 3px;
    font-size: 0.7rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn img {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-btn img:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px);
    z-index: -5;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.mobile-menu {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fcecdf;
    color: black;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 85vh;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
    border-bottom: 10px solid #912933;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hamburger-close {
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    background-color: #912933;
    color: white;
}

.mobile-menu a {
    color: black;
    text-decoration: none;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-top: 1px solid #912933;
    flex: 2;
}

.mobile-menu a.active {
    text-decoration: underline;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    flex: 1;
    min-height: 60px;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
}

.mobile-socials img {
    width: 40px;
    height: 40px;
}

.mobile-menu {
    overflow: visible;
}

.mobile-socials {
    overflow: visible;
}

.long-text {
    display: block;
}

.short-text {
    display: none;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p, a {
        font-size: 1.1rem;
    }    
    
    .outline {
        font-size: 2.25rem;
    }

    nav {
        padding: 0px 12px;
        border-radius: 6px;
        gap: 8px;
    }

    nav img {
        max-width: 100px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 5px;
    }

    .content {
        padding: 30px 0;
    }

    #footer-logo {
        flex: 1;
    }

    .footer-info {
        max-width: 50%;
        font-size: 0.8rem;
        flex: 1;
    }
    
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p, a {
        font-size: 1rem;
    }

    .outline {
        font-size: 2rem;
    }

    .content {
        padding: 20px 0;
    }

    #main-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        padding: 40px;
    }

    #footer-logo {
        margin-bottom: 25px;
    }

    .footer-info {
        max-width: 100%;
        font-size: 0.65rem;
        line-height: 1;
        margin-bottom: 25px;
        gap: 6px;
    }

    .footer-info p {
        margin-bottom: 3px;
    }

    .icons img {
        width: 18px; 
    }

    .whatsapp-btn img {
        width: 48px;
        width: 48px;
    }

    nav {
        padding: 1px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .nav-logo img {
        height: 54px;
        width: 54px;
    }

    .nav-links {
        display: none;
    }

    .nav-socials {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 2.5rem;
    }

    .long-text {
        display: none;
    }

    .short-text {
        display: block;
    }
}
