body {
    font-family: geneva;
    background-color: #F1DEDC;
    color: #333;
    margin: 0;
    padding: 20px;
    text-decoration: none;
}
header {
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.2em;
    font-style: italic;
    position: relative;
    z-index: 1;
}

main {
    margin: 20px auto;
    max-width: 1000px;
    height: 1500px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    text-align: center;
}

.description h2 {
    color: #8AC6D0;
}

nav {
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

.back-link {
    text-decoration: none;
    color: #8AC6D0;
    font-weight: bold;
    text-align: center;
}



nav a:hover,
nav a.active{
	color: #c5e8ee;
	border-bottom: 3px solid #c5e8ee;
    text-decoration: none;
}

.nav a{
    text-decoration:none;
}

.card-container {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); 
    gap: 10px; 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 20px;  
}

.card {
    width: 150px; 
    height: 200px; 
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-front {
    background-color: #8AC6D0;
    color: white;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
}

.card-back {
    background-color: #8AC6D0;
    transform: rotateY(180deg);
    text-align: center; 
}

.card:hover {
    transform: rotateY(180deg); 
}

h3 {
    margin: 0 0 10px;
}
h4 {
    margin: 0 0 10px;
   
}
h5 {
    margin: 0 0 10px;
   
}

a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

a:hover {
    text-decoration: none;
}
.additional-section {
    padding: 10px 20px; 
    text-align: center; 
    margin-top: 40px;
}

.additional-section h4 {
    margin-bottom: 5px; 
    font-size: 20px;
}

.additional-section h5 {
    margin-bottom: 5px; 
    font-size: 20px;
}

.button-container{
    text-align: center;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.menu-button {
    padding: 15px 30px;
    background-color: #F1DEDC;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.5s ease;
}

.menu-button:hover {
    background-color: #efb8b2;
    transform: scale(1.05);
}

.menu-button:active {
    background-color: #efb8b2;
}

/* Content Sections */
.content-section {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Make the targeted section visible */
:target {
    display: block;
}

/* Back to Overview Button */
.button-container {
    margin-top: 20px;
    text-align: center;
}

.button {
    padding: 12px 25px;
    background-color: #F1DEDC;
    color: #efb8b2;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #efb8b2;
}

.button:active {
    background-color: #efb8b2;
}


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style for the dropdown button */
.dropbtn {
    background-color: #efb8b2; /* Green background */
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #efb8b233;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    min-width: 220px;
    border-radius: 5px;
    padding: 10px;
}

/* Show the dropdown when hovering over the button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Category headers */
.category h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

/* Style for the links */
.category a {
    display: block;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

/* Remove border from the last link in each category */
.category a:last-child {
    border-bottom: none;
}

/* Hover effect for links */
.category a:hover {
    background-color: #ddd;
    color: #efb8b2;
}
