﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content:center;
}

    .logo img {
       width:5%;
    }

.title h1 {
    font-size: 1.3rem;
    font-weight: 700;
}

.title p {
    font-size: 0.85rem;
    color: #b70000;
}

/* Navbar */
.navbar1 {
    background-color: #0f1821;
}

    .navbar1 ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        list-style: none;
    }

    .navbar1 li {
        margin: 0;
    }

    .navbar1 a {
        display: block;
        padding: 14px 20px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s;
    }

        .navbar1 a:hover,
        .navbar1 a.active {
            background-color: #e5322d;
        }
        ul{
            margin-bottom:0 !important;
        }

.committee {
    background-color: #f5f5f7;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.committee-container {
    width:80%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
}

    .committee-container h2 {
        font-size: 1.6rem;
        color: #333;
        margin-bottom: 30px;
        border-bottom: 2px solid #e5322d;
        display: inline-block;
        padding-bottom: 5px;
    }

.committee-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.committee-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.committee-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

    .committee-item p br {
        margin-bottom: 5px;
    }

/* Hover efekti (isteğe bağlı) */
.committee-item:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}
.hod-logo {
    width: 90px;
    height: auto;
}

.header-text h1 {
    color: #b71c1c;
    font-size: 2.5rem;
    margin: 0;
}

.header-text p {
    color: #b71c1c;
    font-weight: 600;
    margin: 0;
}

.header-text a {
    color: #b71c1c;
    text-decoration: none;
    font-size: 0.9rem;
}

.section-header {
    font-weight: bold;
    color: #fff;
    padding: 10px;
    background: linear-gradient(to right, #b71c1c, #7a0e0e);
    border-radius: 3px;
    margin-top: 20px;
}

.contact-info {
    margin: 15px 0;
    line-height: 1.6;
}

    .contact-info a {
        color: #b71c1c;
        text-decoration: none;
    }

.org-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fortuna-logo {
    width: 120px;
    height: auto;
}

hr {
    border: 0;
    border-top: 1px solid #999;
    margin: 20px 0;
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
    .header {
        text-align: center;
        flex-direction: column;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .org-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .fortuna-logo {
        margin-top: 10px;
        width: 100px;
    }

    .contact-info {
        text-align: center;
    }
}

.table-container {
    max-width: 900px;
    margin: 40px auto;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    background-color: #751f24;
    color: #fff;
    border-bottom: 2px solid #fff;
}

    td:last-child {
        text-align: right;
    }

tr:last-child td {
    border-bottom: none;
}
tbody tr{
    border-bottom:2px solid #fff;
}
.table-container {
    max-width: 900px;
    margin: 40px auto 20px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    background-color: #751f24;
    color: #fff;
    border-bottom: 2px solid #fff;
}

    td:last-child {
        text-align: right;
    }

tr:last-child td {
    border-bottom: none;
}

/* Bilgilendirme metni */
.info {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #333;
    font-style: italic;
    line-height: 1.6;
}

    .info p {
        margin: 8px 0;
        position: relative;
        padding-left: 20px;
    }

        .info p::before {
            content: "*";
            color: #c00000;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

@media (max-width: 600px) {
    th, td {
        display: block;
        text-align: center;
        width: 100%;
    }

        td:last-child {
            text-align: center;
        }

    tr {
        margin-bottom: 10px;
    }

    .info {
        padding: 0 15px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    th, td {
        display: block;
        text-align: center;
        width: 100%;
    }

        td:last-child {
            text-align: center;
        }

    tr {
        margin-bottom: 10px;
    }
}






















/* Responsive */
@media (max-width: 768px) {
    .committee-container {
        padding: 25px 20px;
    }

        .committee-container h2 {
            font-size: 1.3rem;
        }

    .committee-item h3 {
        font-size: 0.95rem;
    }

    .committee-item p {
        font-size: 0.9rem;
    }
}






/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;

 
}

.hero-content {
 
    flex-wrap: wrap;

    width: 100%;
    background: #fff;
 
    overflow: hidden;

}

.hero-left img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-left {
    flex: 1 1 50%;
}

.hero-right {
    flex: 1 1 50%;
    padding: 40px;
    text-align: center;
}

    .hero-right h2 {
        font-size: 2.5rem;
        color: #b70000;
        font-weight: 700;
        line-height: 1.2;
    }

        .hero-right h2 span {
            color: #222;
            font-weight: 600;
        }

.event-info {
    margin-top: 30px;
    font-size: 1.1rem;
}

    .event-info span {
        margin-right: 8px;
    }

.logo-small {
    margin-top: 30px;
}

    .logo-small img {
        width: 80px;
        opacity: 0.8;
    }

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    background-color: #fff;
    padding: 15px;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background: #fff;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-right {
        padding: 20px;
    }

    .title h1 {
        font-size: 1rem;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar a {
        text-align: center;
    }
}
.general-info {
    background-color: #f5f5f7;
    padding: 40px 20px;
}
.bplink {
    width: 52%;
    text-align: center;
    background-color: #b70000;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    padding: 10px;
}
.bpimg{
    width:100%;
    background-size:100% 100%;
    margin-top:50px;
}

.info-header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #be1622;
}

    .info-header h2 {
        color: #fff;
        font-size:36px;
        font-weight: 600;
        margin-bottom: 20px;
        border-bottom: 2px solid #d9d9d9;
        display: inline-block;
        padding-bottom: 5px;
        margin:50px;
    }

.info-banner {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

    .info-banner img {
        width: 100%;
        height: auto;
        display: block;
    }

.info-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 25px;
}

    .info-item h3 {
        color: #000;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .info-item p {
        color: #333;
        line-height: 1.6;
    }

    .info-item a {
        color: #b70000;
        text-decoration: none;
    }

        .info-item a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .info-content {
        padding: 20px;
    }

    .info-header h2 {
        font-size: 1.2rem;
    }

    .info-item h3 {
        font-size: 1rem;
    }
}