body{
    background-color: #2c1609;

}

.header {
    background-color: #2c1609;
    color: #2c1609;
    padding: 100px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
}
p{
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
}
.hero-section {
    
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
nav {
    background-color: #f9c868;
    padding: 10px;
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
nav a {
    color: #2c1609;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
}





.hexagon {
  width: 100px; /* Adjust as needed */
  height: 115.47px; /* Approximately width * sqrt(3)/2 * 2 */
  background-color: #007bff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.footer {
    background-color: #070403;
    color: #f9c868;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.content {
    background-color: #2c1609;
    color: #FFD938;


}

.content .card-body{
    background-color: #f9c868;
    border-radius: 5px;
    color: #2c1609;

}

.btn{
    background-color: #FFD938;
    color: #2c1609;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
}
.card-body {
    background-color: #FFD938;
    border-radius: 10px;
    padding: 15px;

    display: flex;
    flex-direction: column;
    margin: 20px;
}

.header .card-body {
    margin-top: 200px;
    margin-bottom: 200px;
}

.card-body img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-top: auto;
}   

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to sections and cards */
section, .card-body {
    opacity: 0;
}

section.visible, .card-body.visible {
    animation: fadeIn 0.8s ease-in-out forwards;
}

.container .card-body-2 {
    border-style: dashed;
    border-radius: 15px;
    border-color: #FFD938;
    margin: 100px auto;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}