﻿body {
    font-family: 'Poppins', sans-serif;
    background: #f0f0f0;
    color: #222;
    line-height: 1.7;
}

.navbar {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.4rem; /* Logo metni biraz daha büyük */
}

.nav-link {
    font-size: 1.4rem; /* Menü öğeleri */
    letter-spacing: 0.3px; /* Daha net görünüm için hafif aralık */
}

    .nav-link:hover {
        font-weight: 600;
    }

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    background: #0c0d60;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(12,13,96,0.8));
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-main {
    background: linear-gradient(90deg, #f5ea74, #0c0d60);
    border: none;
    border-radius: 50px;
    color: #0c0d60;
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.countdown-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.time-box {
    background: rgba(255,255,255,0.1);
    padding: 20px 25px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Cards */
.info-card, .jury-card, .blog-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .info-card:hover, .jury-card:hover, .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .jury-card img {
        border-radius: 50%;
        width: 120px;
        height: 120px;
        object-fit: cover;
        margin-bottom: 15px;
        border: 4px solid #f5ea74;
    }

.sponsor-logo {
    max-height: 90px;
    margin: 20px;
    transition: filter 0.3s ease;
}

    .sponsor-logo:hover {
        filter: grayscale(0);
    }

footer {
    background: #0c0d60;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

    footer a {
        color: #f5ea74;
        margin: 0 5px;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        footer a:hover {
            opacity: 0.8;
        }

/* Sub Hero */
.sub-hero {
    position: relative;
    background: linear-gradient(rgba(12,13,96,0.6), rgba(0,0,0,0.7)), url('https://www.skyweaver.net/images/media/wallpapers/wallpaper2.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

    .sub-hero h1 {
        font-weight: 700;
        font-size: 3rem;
    }

/* Content section */
.content-section {
    padding: 60px 0;
}

    .content-section h2 {
        font-weight: 600;
        margin-bottom: 20px;
        color: #0c0d60;
    }

    .content-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

/* Team Cards */
.team-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .team-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-top: 20px;
        border: 4px solid #f5ea74;
    }

/* İletişim */
.contact-section {
    padding: 60px 0;
}

.contact-info h4 {
    font-weight: 600;
    color: #0c0d60;
}

.contact-info p {
    margin-bottom: 15px;
}

.form-control {
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Jury Sayfası */
.jury-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
}

.jury-category {
    margin: 80px 0 40px;
    text-align: center;
}

    .jury-category h2 {
        font-weight: 700;
        color: #0c0d60;
    }

h4 {
    font-weight: 600;
    color: #0c0d60;
}

.form-control, .form-select {
    border-radius: 8px;
}
