/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #cfac8a;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.page.homepage-bg {
    background-image: url('/static/seeblick_steg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center;
    padding-top: 80px; /* Space for navbar */
}

.content-box {
    /* background-color: rgba(193, 235, 193, 0.85); */
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fdfbf7;
    max-width: 80%;
    text-align: center; /* Center text inside content box */
}

.content {
    padding-top: 80px; /* Space for navbar */
}

a {
    color: #2a7f2a;
    text-decoration: none;
}

a:hover {
    color: #3dbb3d;
}

header {
    width: 100%;
    padding: 10px 0;
    position: fixed; /* Make navbar stick to the top */
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 80px; /* Adjust height to match the navbar */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the nav horizontally */
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #743c36;
    font-size: 34px;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s;
}

nav ul li a:hover {
    color: #55605c;
    background-color: rgba(185, 90, 12, 0.2);
    border-radius: 8px;
}

h1 {
    font-size: 65px;
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    background-color: #f1f1f1;
    width: 100%;
    position: relative;
    bottom: 0;
}
