@font-face {
    font-family: 'Bahnschrift';
    src: url('Bahnschrift.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Bahnschrift', Arial, sans-serif;
    background: #FFFFFA url('images/bathymetric_map.png') center/cover no-repeat fixed;
}

.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #005C7E;
    z-index: 1000;
}

.container {
    display: flex;
    min-height: 100vh;
    padding-top: 40px;
    position: relative;
}

.content-section {
    flex: 1;
    padding: 60px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    min-height: calc(100vh - 40px);
}

.content-wrapper {
    width: 60%;
    max-width: 100%;
    text-align: center;
}

.logo-container {
    margin-bottom: 5px;
    text-align: center;
}

.logo {
    max-width: 400px;
    height: auto;
}

.headline {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #282D32;
    line-height: 1.2;
    text-align: center;
}

.paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #282D32;
    text-align: left;
}

.learn-more-btn {
    display: inline-block;
    background-color: #005C7E;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Bahnschrift', Arial, sans-serif;
    border-radius: 4px;
    margin-top: 20px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #004866;
}

.image-section {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 98vh;
    pointer-events: none;
    z-index: 1001;
}

.sword-image {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

@media (max-width: 1300px) {
    .content-section {
        max-width: 780px;
        flex: none;
    }
    
    .image-section {
        width: auto;
        transform: translateX(calc(1300px - 100vw));
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-y: auto;
        height: auto;
    }
    
    .container {
        flex-direction: column;
        min-height: 100vh;
        padding-top: 40px;
    }
    
    .content-section {
        max-width: 100%;
        padding: 40px 20px 60px 20px;
        justify-content: flex-start;
        align-items: center;
        flex: none;
        min-height: auto;
    }
    
    .content-wrapper {
        width: 100%;
        max-width: 500px;
    }
    
    .logo {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .headline {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .paragraph {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .learn-more-btn {
        margin-top: 30px;
        padding: 14px 28px;
        font-size: 1.1rem;
        width: 50%;
        text-align: center;
        position: relative;
        z-index: 10;
        background-color: rgba(0, 92, 126, 0.95);
        backdrop-filter: blur(2px);
        margin-left: 0;
        margin-right: auto;
        display: block;
    }
    
    .image-section {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 400px;
        height: 550px;
        pointer-events: none;
        z-index: 1;
        opacity: 0.3;
        transform: none !important;
    }
    
    .sword-image {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 15px 50px 15px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .headline {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .paragraph {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .learn-more-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .image-section {
        width: 300px;
        height: 300px;
    }
}