body {
    font-family: 'Inknut Antiqua', serif;
    background-color: #f3f0e5;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 10px 10px 10px 35px;
    background-color: #f3f0e5;
}

.toggle-button {
    display: none;
    font-size: 2.5em;
    padding: 10px 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #b13d3d;
    margin-right: 10px;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    font-size: 3em;
    color: #b13d3d;
    transition: color 0.3s;
    margin: 20px;
    transition: color 0.6s ease-in-out;
}

.navbar-links a:nth-child(1) {
    color: #81161C;
}

.navbar-links a:nth-child(2) {
    color: #CC1D33;
}

.navbar-links a:nth-child(3) {
    color: #c96a4d;
}

.navbar-links a:nth-child(4) {
    color: #d68a4d;
}

.navbar-links a:hover {
    color: #000;
}

/* Media queries for smaller screens */


.containerquote {
    display: grid;
    grid-template-rows: 700px;
    grid-template-columns: repeat(auto-fit, minmax(344px, 1fr));
}

.containerquote .mainpart {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
}

/* .containerquote .mainpart div {
    border: 1px solid rgb(255, 255, 255);
}

.containerquote .mainpart div button {
    border: 1px solid rgb(255, 255, 255);
} */

.quote {
    font-size: 2em;
    padding: 30px;
    color: #CC1D33;
    line-height: 2em;

    margin-top: 90px;
    margin-left: 90px;

}

.quote a {
    color: #81161C;
    text-decoration: none;
}

#downloadBtn {
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 70rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #CC1D33;
    cursor: pointer;
    display: inline-flex;


    /* font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-size: 20px;
    /* Increased font size */
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    margin-left: 2rem;
    min-height: 4rem;
    /* Increased minimum height */
    padding: calc(1.25rem - 1px) calc(2rem - 1px);
    /* Increased padding */
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: 400px;
    height: 75px;
    border: 2.5px solid black;
}

#downloadBtn:hover,
#downloadBtn:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: #000;

}

#downloadBtn:active {
    background-color: #F0F0F1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: #000;

    transform: translateY(0);
}



.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    /* Adjusted to fit the text content */
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    /* Adjusted padding */
    position: absolute;
    z-index: 1;
    bottom: 105%;
    /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.cute-button {
    appearance: none;
    background-color: #EE2B31;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 70rem;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    margin-left: 2rem;
    padding: 20px 75px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
    width: 400px;
    height: 75px;
}

.cute-button:hover {
    background-color: #81161C;
    text-decoration: none;
    transition-duration: 0.1s;
}

.cute-button:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.cute-button:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.cute-button:focus {
    outline: 1px transparent;
}

.cute-button:before {
    display: none;
}

.cute-button:-webkit-details-marker {
    display: none;
}

.footer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    background-color: #f3f0e5;
}

.footer a {
    min-width: 100px;
    max-width: 300px;
}

.footer a img {
    min-width: 100px;
    max-width: 300px;
}

.buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

}

.footer a img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    /* Permanent shadow */
    transition: filter 0.3s ease-in-out;
}

.footer a:hover img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.374)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.429));
    /* Permanent shadow + hover effect */
}

.responsive-div {
    display: none;
}

@media (max-width: 1870px) {
    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .buttons button {
        margin-left: 0;
    }

    #downloadBtn {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .quote {
        margin-top: 50px;
        margin-left: 20px;
    }
}

@media (max-width: 1470px) {
    .quote {
        margin-top: 100px;
        margin-left: 20px;
    }

    .footer a img {
        min-width: 50px;
        max-width: 160px;
    }
}



@media (max-width: 1095px) {
    .navbar {
        flex-direction: column;
        align-items: flex-end;
    }

    .toggle-button {
        display: block;
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.5s ease-out;
    }

    .navbar-links a {
        margin: 10px;
        width: auto;
        text-align: right;
        padding-right: 15px;
        margin-right: 15px;
        opacity: 0;
        height: 1.5em;
        font-size: 2em;
        transform: translateY(-20px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .navbar-links.active {
        height: auto;
        /* To smoothly transition the height to fit the content */
        margin-bottom: 20px;
    }

    .navbar-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .navbar-links.active a:nth-child(2) {
        transition-delay: 0.25s;
    }

    .navbar-links.active a:nth-child(3) {
        transition-delay: 0.4s;
    }

    .navbar-links.active a:nth-child(4) {
        transition-delay: 0.55s;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .buttons button {
        margin-left: 0;
    }

    #downloadBtn {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .quote {
        margin-top: 100px;
        margin-left: 20px;
    }

    .footer {
        margin-top: 100px;
    }
}


@media (max-width: 680px) {
    .containerquote {
        grid-template-rows: 550px;
    }

    .quote {
        margin-top: 0px;
        margin-left: 20px;
    }


    .footer {
        margin-top: 50px;
    }

    .footer a img {
        min-width: 70px;
        max-width: 150px;
    }
}

@media (max-width: 470px) {
    .containerquote {
        grid-template-rows: 600px;
    }

    /* 
    .containerquote .text {
        width: 100vw;
    }

    .containerquote .buttons {
        width: 100vw;
    }*/

    #downloadBtn {
        width: 95vw;
    }

    .cute-button {
        width: 95vw;
    }


    .footer {
        margin-top: 0px;
    }

    .footer a img {
        min-width: 50px;
        max-width: 100px;
    }
}

@media screen and (max-width: 595px) {
    .responsive-div {
        margin: 100px 5vw 0 10vw;
        display: block;
    }

    .responsive-div p {
        font-size: 5vw;
        color: #CC1D33;
    }


    .responsive-div p a {
        color: #81161C;
        text-decoration: none;
    }
}

.map {
    transform: scale(0.9);
}