:root {
    --arel-red: #C8102E;
    /*--arel-blue: #003366;*/
    --arel-blue: #041b5e;    
    --arel-light-gray: #f4f4f4;
    --arel-dark-gray: #333333;
    --arel-primary: #003A70;
    --arel-secondary: #D4A017;
    --arel-light: #f5f5f5;
    --arel-dark: #222;
    /*--arel-blue: #003a70;
    --arel-light: #f0f5fa;*/
    --arel-gold: #c9a050;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.utility-nav {
    background-color: var(--arel-blue);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    min-height: 25px;
}

.navbar-brand {
    position: absolute;
    top: 5px;

}

.navbar {
    background-color: #fff;
    padding: 1rem;
    color: black;
    height: 85px;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }

  .nav-menu {
    display: flex;
    list-style: none;
  }

  .nav-menu li {
    margin-left: 2rem;
  }

  .nav-menu a {
    color: var(--arel-blue);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s;
  }

  .nav-menu a:hover {
    color: #ff9900;
  }
  .close-menu-item {
    display: none;
  }



  .hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--theme-color2);
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    border-bottom: 1px solid var(--theme-color2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 5px;
}


        /* Sayaç Bölümü */
        .countdown-section {
            padding: 50px 0;
            background-color: var(--arel-secondary);
            color: white;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
        }
        
        .countdown-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .countdown-item {
            text-align: center;
            min-width: 80px;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }


        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--arel-blue);
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-content {
            width: calc(50% - 40px);
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-date {
            position: absolute;
            top: 0;
            width: 80px;
            /*height: 30px;*/
            line-height: 30px;
            text-align: center;
            background-color: var(--arel-gold);
            color: white;
            border-radius: 4px;
            font-size: 14px;

        }
        
        .timeline-item:nth-child(odd) .timeline-date {
            left: calc(50% - 40px);
        }
        
        .timeline-item:nth-child(even) .timeline-date {
            right: calc(50% - 40px);
        }
        
        .timeline-title {
            font-size: 1.2rem;
            color: var(--arel-blue);
            margin-bottom: 10px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--arel-blue);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 0;
        }


        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--arel-blue);
            position: relative;
        }


        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--arel-gold);
        }

        .info-section {
            padding: 100px 0;
            background-color: white;
        }

        .categories-section {
            padding: 100px 0;
            background-color: var(--arel-primary);
            color: white;
        }

        .prizes-section {
            padding: 100px 0;
            background-color: white;
        }

        .jury-section {
            padding: 100px 0;
            background-color: var(--arel-light);
        }



        .info-cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .info-cards-home {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 100px;
        }
        
        .info-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--arel-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
        }
        
        .info-card-img-home {
            overflow: hidden;
        }

        .info-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .info-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .info-card:hover .info-card-img img {
            transform: scale(1.1);
        }
        
        .info-card-content {
            padding: 30px;
        }
        
        .info-card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--arel-primary);
        }
        
        .info-card-content p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Kategoriler Bölümü */
        .categories-section {
            padding: 100px 0;
            background-color: var(--arel-primary);
            color: white;
        }
        
        .categories-section .section-title {
            color: white;
        }
        
        .categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .category {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            padding: 40px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .category:hover {
            background-color: var(--arel-secondary);
            transform: translateY(-5px);
        }
        
        .category i {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .category h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .category p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* Ödüller Bölümü */
        .prizes-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .prizes {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .prize {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            padding: 30px;
            background-color: var(--arel-light);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            position: relative;
        }
        
        .prize:hover {
            transform: translateY(-10px);
        }
        
        .prize-rank {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--arel-primary);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .prize h3 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: var(--arel-primary);
        }
        
        .prize-amount {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--arel-secondary);
            margin-bottom: 20px;
        }
        
        .prize p {
            line-height: 1.6;
        }
        
        /* Jüri Bölümü */
        .jury-section {
            padding: 100px 0;
            background-color: var(--arel-light);
        }
        
        .jury-members {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .jury-member {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
        }
        
        .jury-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--arel-primary);
        }
        
        .jury-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jury-member h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--arel-primary);
        }
        
        .jury-member .title {
            color: var(--arel-secondary);
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .jury-member p {
            line-height: 1.6;
            font-size: 0.9rem;
        }


        .form-container {
            margin: 0 auto;
            padding: 40px;
           background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--arel-blue);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            font-size: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--arel-gold);
            box-shadow: 0 0 0 2px rgba(201, 160, 80, 0.2);
        }
        
        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--arel-gold);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #b08c45;
        }
        
        .btn-submit {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
        }
        
        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
            background-color: #d4edda;
            color: #155724;
            border-radius: 4px;
            margin-top: 20px;
            
        }
        
        .register-section {
            padding: 100px 0;
            background-color: var(--arel-light);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
    z-index: 1;
        }

        .register-section::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: -0.5px;
            top: 0;
            background: rgba(255, 255, 255, 0.9);
            z-index: -1;
        }

        /* Judges Section */
        .judges {
            background-color: var(--arel-light-gray);
        }
        
        .judges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .judge-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .judge-image {
            height: 200px;
            overflow: hidden;
        }
        
        .judge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .judge-content {
            padding: 20px;
        }
        
        .judge-content h3 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--arel-blue);
        }
        
        .judge-content p.judge-title {
            font-style: italic;
            margin-bottom: 10px;
            color: var(--arel-secondary);
        }


        footer {
            background-color: var(--arel-blue);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-logo {
            height: 100px;
            margin-bottom: 20px;
            padding: 8px;
            border-radius: 4px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--arel-blue);
            font-size: 1.2rem;
            transition: transform 0.3s;
            text-decoration: none;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            text-decoration: none;
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }


  /********************RESPONSIVE***************************/

  @media screen and (max-width: 768px) {

    .hero-single {
        padding-top: 270px;
        padding-bottom: 150px;
    }

    .theme-btn{
        margin: 0 auto;
    }
    .hero-single .hero-content .hero-title {
        font-size: 36px;
    }

    .nav-menu a {
        color: white;
    }

    .navbar {
        height: 72px;
    }

    .close-menu-item {
      display: block;
      border-bottom: none !important;
    }

    .menu-toggle {
      display: block;
    }

    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      flex-direction: column;
      background-color: var(--arel-blue);
      width: 70%;
      height: 100vh;
      padding: 2rem;
      transition: 0.5s;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 1001; /* Overlay'den daha yüksek z-index */
    }

    .nav-menu.active {
      right: 0;
    }

    .nav-menu li {
      border-bottom: 1px #858585 dotted;
      padding: 0 0 5px 0;
      margin: 0.8rem 0;
    }

    .close-menu {
      position: absolute;
      top: 1rem;
      right: 1rem;
      cursor: pointer;
      font-size: 1.5rem;
      color: #ccc;
    }

    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 3;
    }

    .mobile-menu-overlay.active {
      display: block;
    }
  }




/******* RESPONSIVE *******/

@media (min-width: 1200px) {}
@media all and (min-width: 768px) and (max-width: 1199px) {}
@media all and (max-width: 1199px) {}
@media all and (max-width: 992px) {}
@media all and (min-width: 992px) {}
@media all and (max-width: 991px) {.mb-4 {
    margin-top: 120px !important;
}}
@media (min-width: 992px){}
@media (max-width: 991px){}
@media all and (max-width: 767px) {}
@media all and (max-width: 768px) {}
@media (max-width: 991px) {}
@media only screen and (max-width: 991px) {}
@media all and (min-width: 1199px) {}

@font-face {
    font-family: "arelicon";
    src: url("./font/arelicon.eot?29727993");
    src: url("./font/arelicon.eot?29727993#iefix")
        format("embedded-opentype"),
      url("./font/arelicon.woff?29727993") format("woff"),
      url("./font/arelicon.ttf?29727993") format("truetype"),
      url("./font/arelicon.svg?29727993#arelicon") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  .arel-icon {
    font-family: "arelicon";
    font-style: normal;
    font-weight: normal;
    speak: never;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: 0.2em;

    /* You can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  }

  .navbar {
    background: var(--color-white);
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 999;
  }
  
  .custom-nav{
    background: var(--color-white);
    position: relative;
  }
  
  .navbar.fixed-top {
    background: var(--color-white) !important;
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
  }
  
  
  @keyframes slide-down {
    0% {
      transform: translateY(-100%);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  .navbar .navbar-brand .logo-display {
    display: block;
  }
  
  .navbar .navbar-brand .logo-scrolled {
    display: none;
  }
  
  .navbar.fixed-top .navbar-brand .logo-display {
    display: none;
  }
  
  .navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
  }
  
  .navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  .navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
  }
  
  .navbar-brand {
    margin-right: 0;
  }
  
  .navbar-brand img {
    width: 170px;
  }
  
  .navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
  }

  .header-top {
    padding: 9px 0 10px 0;
    position: relative;
    z-index: 1;
}

.navbar{
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
    --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
    --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
    --bs-navbar-toggler-border-radius: var(--bs-border-radius);
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar{
    background-color: #fff !important;
    padding: 1rem;
    color: black !important;
    height: 85px !important;
    z-index: 9999 !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

