/* DOCUMENT ---> */
body {
    font-family: 'Apercu', Arial, sans-serif;
    font-weight: 500;
    background-color: #f9f9f9;
    color: #1f4e6e;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;  
    box-sizing: border-box; 
}

/* FONTS ---> */
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu/apercu-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu/apercu-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* CONTENT ---> */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 640px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 2em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 20px;

    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.main-content.show {
    opacity: 1;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;   
    padding: 0px;
    margin-top: 2em;
    gap: 5px;
}

.center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .main-content {
    }
}
@media (min-width: 1024px) {
    .main-content {
    }
}
@media (min-width: 1280px) {
    .main-content {
    }
}

/* TEXT ---> */
h1 {
    color: #1f4e6e;
    font-family: 'Apercu', Arial, sans-serif;
}
p {
    font-family: 'Apercu', Arial, sans-serif;
    font-weight: 400;
}
.footer-p {
    font-size: 0.5em;
    color: #000000;
}
.footer-p a {
    text-decoration: none; 
    color: #000000;
    transition: color 0.3s;
}
.footer-p a:hover {
    color: #ea3443;
}

.superscript {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
    font-size: 0.4em; 
    vertical-align: super;
}
/* IMAGES ---> */
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}
.image-cows img {
    max-width: 20em;
}

/* BUTTONS ---> */
button {
    background: linear-gradient(to bottom, #ea3443, #bb2b27);
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    border-radius: 9999px;
    font-size: 16px;
    font-family: 'Apercu', Arial, sans-serif;
    transition: background 0.3s, transform 0.2s;
}
button:hover {
    background: linear-gradient(to bottom, #dd9399, #bb2b27);
    transform: translateY(-0.1em);
}
button:active {
}

.button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
}

.button-gate {
    width: 15em;
}

/* PROPERTIES ---> */
.clickable {
    cursor: pointer; 
}