.custom-navbar {
    background-color: #001f3f;
    border-radius: 7px; /* Köşeleri ovalleştir */
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("../bg/aesthetics-star.png");
    padding: 12px;
    font-size: large;
}

.navbar-toggler {
    border-radius: 10px; /* Toggler butonunun köşelerini ovalleştir */
}

.dropdown-menu {
    border-radius: 8px; /* Dropdown menüsünün köşelerini ovalleştir */
}

@font-face {
    font-family: 'DidactGothic-Regular';
    src: url('../fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: 'DidactGothic-Regular', Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #c1c6d477 0%, #ffffff 100%);
    height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Arka plana transparrent foto ekle */
body::before {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../bg/index-bg.png");
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 1;
}

/* İçeriği overlay'in üstünde göster */
.main-container {
    position: relative;
    z-index: 2;
    padding: 20px; 
}

.form-control {
    border-color: rgb(0, 0, 0) !important;
}
.btn.btn-outline-secondary {
    border-color: rgb(0, 0, 0) !important;
}

.nav-link:hover, .dropdown-item:hover {
    color: #fb00ff !important;  /* Parlak renk */
    text-shadow: 0 0 50px rgb(255, 255, 255);
}
.card.shadow-sm:hover {
    border-color: rgb(255, 255, 255) !important;
}

.index-class {
    margin-bottom: 5vw;
}

.index-btn {
    min-width: 130px;
    height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background-color: #3d348b
  }
  .index-btn:hover {
    border-radius: 5px;
    padding-right: 24px;
    padding-left:8px;
  }
  .index-btn:hover:after {
    opacity: 1;
    right: 10px;
  }
  .index-btn:after {
    content: "\00BB";
    position: absolute;
    opacity: 0;
    font-size: 20px;
    line-height: 40px;
    top: 0;
    right: -20px;
    transition: 0.4s;
  }
.special-header {
    color: #333;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
