/* Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --dark:#1C2042;
    --bgmain:#F9F9F9;
}
body {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    background-color: white!important;
    color:var(--dark);
}
h1 , h2 , h3 , h4 , h5 , h6 {
    font-family: "Raleway", sans-serif;
}
p , li , a {
    font-family: "Nunito", sans-serif;
}
h1{
     font-size:32px!important;
}
h2{
    font-size:26px!important;
}
h3{
    font-size:20px!important;
}
h4{
    font-size:18px!important;
}
a {
    text-decoration: none!important;
}
.documentation-container {
    display: flex;
    width: 100%;
}
.content a{
    
    color:#000!important;
    font-weight: 600;
}

.borderimg{
    border:1px solid #f5f5f5;
}




/* Sidebar Styles */
.sidebar {
    width: 280px;
    background: var(--bgmain);
    color: white;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    border-right: 1px solid #34495e28;
}

.sidebar-header {
    padding: 40px 20px;
    border-top: 1px solid #34495e28;
}
.sidebar-subheader {
    padding: 20px;
    border-bottom: 1px solid #34495e28;
}
.sidebar-subheader p{
    font-weight: 300;
    color:black;
    font-size:12px;
    margin:0px;
}
.sidebar h1,span{
    color:var(--dark);
    margin-bottom:20px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.nav-links li a {
    display: block;
    padding: 12px 20px;
    color:var(--dark);
    text-decoration: none;
    transition: background 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    background: var(--dark);
    color:var(--bgmain);
}

/* Content Area */
.content {
    flex: 1;
    padding: 30px;
    max-width: 900px;
    margin: 0 15%;
}

/* Mobile Header (hidden on desktop) */
.mobile-header {
    display: none;
    padding: 15px;
    background: #2c3e50;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
}
/* Update documentation container */
.documentation-container {
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    width: 100%;
    min-height: 100vh;
}

/* Content area */
.content {
    padding: 30px;
    max-width: 900px;
    margin: 0 15%;
    grid-column: 2;
}

/* Section navigation sidebar */
.section-nav {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 15px;
    overflow-y: auto;
    border-left: 1px solid #eee;
}

.section-nav-container {
    position: relative;
}

.section-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.section-links li {
    margin-bottom: 8px;
}

.section-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.section-links a:hover,
.section-links a.active {
    color: #2c3e50;
    font-weight: 500;
}

.section-links a.active {
    border-left: 3px solid #2c3e50;
    padding-left: 10px;
}
.arrowdiv{
    margin-top:90px;
}
.arrowdiv2{
    margin-top:180px!important;
}
.bottomcontact{
    gap:30px;
    justify-content: center;
}
#ozellikler h3{
    font-size:20px!important;
}
#ozellikler h4{
    font-size:18px!important;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .documentation-container {
        grid-template-columns: 280px 1fr;
    }
    
    .section-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .documentation-container {
        grid-template-columns: 1fr;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        transform: translateX(-100%);
        z-index: 999;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-header {
        display: flex;
        align-items: center;
    }
    
    .content {
        padding-top: 80px;
    }
}