/* Import custom WOFF font */
@font-face {
    font-family: 'HovesLight';
    src: url('assets/tthoveslight.woff') format('woff'); /* Adjust path to your font file */
    font-weight: normal;
    font-style: normal;
}

/* Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML Setup */
body, html {
    height: 100%;
    font-family: 'HovesLight', sans-serif; /* Apply the custom web font */
    background-color: #8a9182; /* Set background color */
    color: white; /* Set text color */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Container for all elements */
.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto; /* Center the container horizontally */
}

/* Logo styling (Top-right) to match index page */
.logo {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 300px; /* Match size and position from index page */
}

/* Content Styling */
.content {
    margin-top: 100px; /* Space below the logo */
}

/* Centered Content Container */
.centered-content {
    max-width: 800px;
    margin: 0 auto; /* Centers the text container */
    text-align: left; /* Ensures text remains left-aligned */
    padding-left: 30px; /* Matches right padding of logo */
}

/* Section Styling for English and German Sections */
.imprint-section {
    margin-bottom: 40px; /* Adds space between English and German sections */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.6em; /* Slightly larger for readability */
    margin-top: 25px;
    margin-bottom: 5px;
}

p {
    font-size: 1em;
    line-height: 1.3em; /* Increased line height for easier reading */
    margin-bottom: 12px;
}

a {
    color: white;
    text-decoration: underline;
}

a:hover {
    color: #cccccc; /* Optional: Hover color for links */
}

/* Import custom WOFF font */
@font-face {
    font-family: 'HovesLight';
    src: url('assets/tthoveslight.woff') format('woff'); /* Adjust path to your font file */
    font-weight: normal;
    font-style: normal;
}

/* Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML Setup */
body, html {
    height: 100%;
    font-family: 'HovesLight', sans-serif; /* Apply the custom web font */
    background-color: #8a9182; /* Set background color */
    color: white; /* Set text color */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Container for all elements */
.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto; /* Center the container horizontally */
}

/* Logo styling (Top-right) to match index page */
.logo {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 300px; /* Match size and position from index page */
}

/* Content Styling */
.content {
    margin-top: 100px; /* Space below the logo */
}

/* Centered Content Container */
.centered-content {
    max-width: 800px;
    margin: 0 auto; /* Centers the text container */
    text-align: left; /* Ensures text remains left-aligned */
    padding-left: 30px; /* Matches right padding of logo */
}

/* Section Styling for English and German Sections */
.imprint-section {
    margin-bottom: 40px; /* Adds space between English and German sections */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.6em; /* Slightly larger for readability */
    margin-top: 25px;
    margin-bottom: 5px;
}

p {
    font-size: 1em;
    line-height: 1.3em; /* Increased line height for easier reading */
    margin-bottom: 12px;
}

a {
    color: white;
    text-decoration: underline;
}

a:hover {
    color: #cccccc; /* Optional: Hover color for links */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .logo {
        right: 12px;
        width: 200px; /* Adjust logo size for mobile */
    }

    .content {
        margin-top: 80px; /* Adjust space below logo for mobile */
    }

    .centered-content {
        padding-left: 20px; /* Reduced left padding for mobile */
        padding-right: 20px; /* Add right padding for balance */
    }

    h1 {
        font-size: 2em; /* Adjust main heading font size for mobile */
    }

    h2 {
        font-size: 1.4em; /* Adjust subheading font size for mobile */
    }

    p {
        font-size: 0.9em; /* Adjust paragraph font size for mobile */
        line-height: 1.4em; /* Slightly increased line height for readability */
    }
}



