/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #f4f4f4;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    min-height: 60px;
    z-index: 1000;
}

h1 {
    font-size: 1.2rem;
    margin: 10;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: #c31a25;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
}

.logo-img {
    width: 40px;
    height: auto;
    margin-right: 8px;
}

/* Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-left: 17px;
    animation: float 5s ease-in-out infinite;
    animation-delay: calc(0.5s * var(--i));
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background-color: #c31a25;
    color: white;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #cc2828;
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 3rem 0;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: -100px auto 3rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

:root {
    --primary-color: #c31a25;
    --secondary-color: #f1c40f;
    --text-color: #333;
    --bg-color: #fff;
    --hover-color: #f1f1f1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-hexagon {
    width: 200px;
    height: 230px;
    background: linear-gradient(135deg, #c31a25 0%, #e74c3c 100%);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hexagon-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.feature-hexagon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.feature-hexagon h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-hexagon p {
    font-size: 0.8rem;
    color: #666;
}

/* About Content Section */
.about-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--primary-color);
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team {
    padding: 1rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(195, 26, 37, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.member-info q {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #c31a25 0%, #8c0e15 100%);
    color: white;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-section {
    flex: 1;
    margin-bottom: 2rem;
    padding: 0 15px;
}

footer .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

footer .footer-section p {
    line-height: 1.6;
}

footer .contact span {
    display: block;
    margin-bottom: 0.5rem;
}

footer .socials a {
    color: white;
    margin-right: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s;
}

footer .socials a:hover {
    color: #f1c40f;
}

footer .footer-section.links ul {
    list-style-type: none;
    padding: 0;
}

footer .footer-section.links ul li {
    margin-bottom: 0.5rem;
}

footer .footer-section.links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-section.links ul li a:hover {
    color: #f1c40f;
}

footer .contact-input {
    background: #ffffff3d;
    color: white;
    border: none;
    padding: 0.7rem;
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 5px;
}

footer .contact-input::placeholder {
    color: #ffffffb3;
}

footer .footer-btn {
    padding: 0.7rem 1.5rem;
    background: #f1c40f !important;
    color: #333 !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

footer .footer-btn:hover {
    background: #e6b90f !important;
}

footer .footer-bottom {
    background: #8c0e15;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mission and Vision Section */
.mission-vision {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.mission-vision-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-vision-card {
    width: 300px;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.mission-vision-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-front {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    color: white;
}

.card-back {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-color);
    transform: rotateY(180deg);
}

.card-front h3, .card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-front i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-back p {
    margin-bottom: 1rem;
    text-align: center;
}

.card-back ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.card-back li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.card-back li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* YBS Section */
.ybs-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 30px;
}

.ybs-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ybs-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.feature {
    width: 200px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #e30a17;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

.ybs-coming-soon {
    margin-top: 30px;
    font-style: italic;
    color: #e30a17;
}

.menu-toggle {
    display: none; /* Varsayılan olarak gizle */
    cursor: pointer;
    padding: 10px;
}

.menu-toggle i {
    font-size: 24px;
}

.menu-toggle {
    display: none; /* Varsayılan olarak gizle */
    cursor: pointer;
    padding: 10px;
}

.menu-toggle i {
    font-size: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    header {
        height: 70px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .header-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .logo-img {
        width: 30px;
        height: auto;
        margin-right: 10px;
    }

    h1 {
        font-size: 1rem;
        margin: 0;
    }
    @media (max-width: 768px) {
        .menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f0f0f0;
            transition: all 0.3s ease;
            position: absolute;
            top: 15px;
            right: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
    
        .menu-toggle:hover {
            background-color: #e0e0e0;
        }
    
        .menu-toggle.active {
            color: #c31a25;
            background-color: #f8e0e0;
        }
    
        .navbar {
            display: none;
        }
    
        .navbar.active {
            display: block;
            position: absolute;
            top: 70px; /* Header yüksekliğine göre ayarlayın */
            right: 0;
            width: 250px; /* Menü genişliği */
            background-color: #fff;
            box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
            border-radius: 0 0 0 10px;
            max-height: calc(100vh - 70px); /* Ekran yüksekliğinden header'ı çıkar */
            overflow-y: auto;
        }
    
        .navbar ul {
            flex-direction: column;
            padding: 10px 0;
        }
    
        .navbar li {
            margin: 0;
            width: 100%;
        }
    
        .navbar a {
            display: block;
            padding: 12px 20px;
            color: #333;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
    
        .navbar a:hover {
            background-color: #f0f0f0;
        }
    
        .dropdown-content {
            position: static;
            display: none;
            width: 100%;
            box-shadow: none;
            background-color: #f9f9f9;
        }
    
        .dropdown.active .dropdown-content {
            display: block;
        }
    
        .dropdown-content a {
            padding: 10px 30px;
        }
    
        .dropdown > a::after {
            content: '\25BC';
            float: right;
            transition: transform 0.3s ease;
        }
    
        .dropdown.active > a::after {
            transform: rotate(180deg);
        }
    }

    .container {
        flex-direction: column;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }
    .hero h1 {
        font-size: 24px;
    }
    .hero p {
        font-size: 16px;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .yurt-grid {
        grid-template-columns: 1fr;
    }
    .yurt-card {
        margin-bottom: 20px;
    }

    .about-preview .container {
        flex-direction: column;
    }
    .about-image {
        order: -1;
        margin-bottom: 20px;
    }
    .about-content, .about-image {
        flex: none;
        width: 100%;
    }

    .svg-turkiye-haritasi {
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .city-name {
        position: static;
        font-size: 18px;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        color: #333;
        border-radius: 5px;
        margin: 10px auto;
        max-width: 90%;
        transform: none;
        left: auto;
        right: auto;
    }

    @media screen and (max-width: 767px) {
        .ybs-section {
            padding: 20px 0;
        }
    
        .ybs-content {
            max-width: 100%;
            padding: 0 10px;
        }
    
        .ybs-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-left: -20px;  /* Bu satır, tüm grid'i sola kaydırır */
        }
    
        .feature {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
            text-align: center;
        }
    
        .feature i {
            font-size: 22px;
            margin-bottom: 6px;
        }
    
        .feature h3 {
            font-size: 13px;
            margin-bottom: 4px;
        }
    
        .feature p {
            font-size: 11px;
            line-height: 1.2;
        }
    
        /* Eğer sağ tarafta boşluk kalırsa, bu kodu ekleyin */
        .feature:nth-child(even) {
            margin-right: -5px;
        }
    }
    footer {
        padding: 30px 0 10px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .footer-section {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .footer-section p, .footer-section span {
        font-size: 0.9em;
    }

    .footer-section.links ul {
        padding: 0;
        list-style-type: none;
    }

    .footer-section.links ul li {
        margin-bottom: 10px;
    }

    .footer-section.links ul li a {
        font-size: 0.9em;
    }

    .footer-section.contact-form form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-input {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
        padding: 10px;
        font-size: 0.9em;
    }

    .footer-btn {
        width: 100%;
        max-width: 300px;
        padding: 10px;
        font-size: 0.9em;
    }

    .footer-bottom {
        font-size: 0.8em;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .card-container {
        flex-direction: column;
    }
    .card {
        width: 100%;
        margin-bottom: 20px;
    }

    table {
        font-size: 14px;
    }
    table th, table td {
        padding: 8px;
    }

    .contact-form {
        width: 100%;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .btn, .modern-link {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes yildizRenkDegisimi {
    0%, 100% { fill: #ffffff; }
    50% { fill: #e30a17; }
}

@keyframes yildizParlama {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}


/* Why Us Section */
@media (max-width: 768px) {
    .why-us {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-container {
        gap: 1rem;
    }

    .feature-hexagon {
        width: 150px;
        height: 173px;
    }

    .feature-hexagon i {
        font-size: 2rem;
    }

    .feature-hexagon h3 {
        font-size: 0.9rem;
    }

    .feature-hexagon p {
        font-size: 0.7rem;
    }
}

/* Mission and Vision Section */
/* Mission and Vision Section */
@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision-card {
        width: 85%;
        max-width: 280px;
        height: auto;
        margin: 0 auto 1.5rem;
        transform: translateX(-5%); /* Kartları sola kaydır */
    }

    .card-front, .card-back {
        position: relative;
        height: auto;
        min-height: 220px;
        width: 100%;
        padding: 15px;
    }

    .card-back {
        transform: none;
        position: absolute;
        top: 0;
        left: 0;
    }

    .mission-vision-card:hover .card-inner {
        transform: none;
    }

    .card-inner {
        transform-style: flat;
        width: 100%;
    }

    .card-front h3, .card-back h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card-front i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .card-back p, .card-back li {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .card-back ul {
        padding-left: 15px;
    }

    .card-back li {
        margin-bottom: 5px;
    }
}
/* Timeline Section */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 10px;
        right: auto;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-item:nth-child(even) .timeline-icon {
        left: 10px;
    }
}

@media (max-width: 767px) {
    .team {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .team-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 85%;
        max-width: 250px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .member-image {
        height: 150px;
    }

    .member-info {
        padding: 10px;
    }

    .member-info h3 {
        font-size: 1em;
        margin-bottom: 3px;
    }

    .member-info p {
        font-size: 0.8em;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .member-info q {
        font-size: 0.75em;
        font-style: italic;
        display: block;
        margin-top: 5px;
    }

    .member-overlay .member-social a {
        font-size: 1.2em;
    }

    /* Opsiyonel: Eğer hala çok büyükse, ikinci paragrafı gizleyebilirsiniz */
    .member-info p:nth-of-type(2) {
        display: none;
    }


}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #c31a25;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 0;
    overflow: hidden;
}

.back-to-top:hover {
    background-color: #9e1520;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .back-to-top .icon-container {
        position: relative;
        left: 0.5px; /* Gerekirse bu değeri ayarlayın */
        top: 0.5px; /* Gerekirse bu değeri ayarlayın */
    }
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #ffffff;
    color: #333333;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: Arial, sans-serif;
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .cookie-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .cookie-link:hover {
    text-decoration: underline;
  }
  
  .cookie-button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cookie-button:hover {
    background-color: #b30600;
  }
  
  @media screen and (max-width: 768px) {
    .cookie-consent {
      bottom: 0;
      left: 0;
      right: 0;
      width: 98%;
      max-width: none;
      border-radius: 0;
      transform: none;
      padding: 15px;
    }
  
    .cookie-content p {
      font-size: 13px;
    }
  
    .cookie-button {
      width: 100%;
      padding: 12px;
      font-size: 14px;
    }
  }
