﻿@font-face {
    font-family: 'Raleway';
    src: url('/css/webfonts/Raleway-Regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('/css/webfonts/Raleway-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('/css/webfonts/Raleway-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
 
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Arkada kalması için */
    background: #012a40;
}

html, body {
    color: #eaeaea;
    scroll-behavior: smooth;
    font-family: 'Raleway', sans-serif;
     -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
    overflow:auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Tüm boş alanı kaplar */
}
 
section {
    min-height: 100vh;
    padding-top: 64px;
    height: auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.ocean-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
    background: linear-gradient(135deg, #023e58ce, #01688cce);
    backdrop-filter: blur(7px);
    color: #80cdea;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    height: 64px;
}

    .ocean-header .nav-menu .nav-links > a {
        color: #e0f7fa;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        position: relative;
        transition: all 0.3s ease;
    }

        .ocean-header .nav-menu .nav-links > a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #80deea;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .ocean-header .nav-menu .nav-links > a:hover::after {
            width: 100%;
            left: 0;
        }

        .ocean-header .nav-menu a:hover {
            color: #b2ebf2;
        }

.ocean-footer {
    background: linear-gradient(135deg, #023e58, #01688c);
    color: #c4e0e5;
   
    text-align: center;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}