body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/4k-lp-cabin.png');
    background-size: cover;
    filter: blur(3px);
    z-index: -1;
}

.container { 
    max-width: 800px; 
    margin: 50px auto; 
    background: #fff; 
    padding: 20px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    flex: 1;
} 

h1 { 
    color: #ffffff; 
    font-family: 'Comic Sans MS', sans-serif; 
    font-size: 60px;
    text-shadow: 3px 3px 5px #ff6f61, 6px 6px 10px #ffc107, 9px 9px 15px #76d7c4;
} 

h3, h5 {
    font-family: 'Comic Sans MS', sans-serif; 
    color: #ffffff;
    text-shadow: 2px 2px 5px #76d7c4, 4px 4px 10px #3498db, 6px 6px 15px #ff6f61;
} 

p { 
    line-height: 1.6; 
} 

.highlight { 
    background-color: #ffeb3b; 
    padding: 5px; 
    border-radius: 3px; 
}

/* Unvisited link */
a:link {
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
  }
  
  /* Visited link */
  a:visited {
    color: white; /* Text color for visited links */
    text-decoration: none; /* Remove underline */
}

nav {
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    display: flex;
    justify-content:center; /* Move navigation to the right */
    align-items: center;
}

ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-family: 'Comic Sans MS', sans-serif; /* Cartoonish font */
    text-decoration: none;
    color: white;
    background-color: #76d7c4; /* Match theme color */
    border: 3px solid #3498db; /* Bold, contrasting border */
    border-radius: 15px; /* Rounded corners for a bubble effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 3px #ffffff; /* Inner & outer shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

#joinbut {
    margin-right: 40px;
    font-size: 20px;
    font-family: 'Comic Sans MS', sans-serif;
    padding: 10px 25px;
    background-color: #ff6f61; /* Match theme color */
    color: white;
    border: 3px solid #d17c00;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 3px #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#joinbut:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 0 5px #d17c00;
    background-color: #ffcc00; /* Highlighted theme color */
}

.nav-item:hover {
    transform: scale(1.1); /* Exaggerated hover scaling */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 0 5px #3498db; /* Larger shadows on hover */
    background-color: #8cd5ff; /* Lighter theme color */
}

footer {
    background-color: #333; 
    color: white; 
    text-align: center; 
    padding: 10px 0; 
    position: fixed; 
    bottom: 0; 
    width: 100%;
}

#headline {
    color: white; 
    margin: 40px;
    padding-top: 20px;
    text-align: left; /* Align headline to the left */
    position: absolute;
    top: 0;
    left: 0;
}

.title {
    font-size: 60px;
    font-family: 'Comic Sans MS', sans-serif;
    text-shadow: 3px 3px 5px #ff6f61, 6px 6px 10px #ffc107, 9px 9px 15px #76d7c4;
}

h3, h5 {
    font-family: 'Comic Sans MS', sans-serif;
    color: white;
    text-shadow: 2px 2px 5px #76d7c4, 4px 4px 10px #3498db, 6px 6px 15px #ff6f61;
}

.cta { 
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-family: 'Comic Sans MS', sans-serif; /* Cartoonish font */
    text-decoration: none;
    color: white;
    background-color: #ff6f61; /* Match theme color */
    border: 3px solid #d17c00; /* Bold, contrasting border */
    border-radius: 15px; /* Rounded corners for a bubble effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 3px #ffffff; /* Inner & outer shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
} 

.cta:hover { 
    background-color: #ffcc00; 
    transform: scale(1.05); 
} 

.cta:active { 
    background-color: #d17c00; 
    transform: scale(0.95); 
}

.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.centered-image img {
    width: 500px;
    height: 500px;
    filter: url('#remove-color-filter');
}
