/* Renk Tanımlamaları (Logodan Alınan Renkler) */
:root {
    --primary-red: #D32F2F;
    --primary-blue: #42A5F5;
    --white: #FFFFFF;
}

/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px; /* Header ve navbar yüksekliği için */
}
.whatsapp-float {
        position: fixed;
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
      
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        text-decoration: none;
        color: #fff;
    }

    .whatsapp-float img {
                width: 100%;
                height: 100%;
            }
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
            }
            .whatsapp-float img {
                width: 35px;
                height: 35px;
            }
        }
.top-bar {
    background-color: #1a2a44;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* Responsive Tasarım */
@media (max-width: 767px) {
    

    .carousel-caption .banner-title {
    font-size: 1rem;
   }
   .carousel-caption .banner-text {
    font-size: 0.8rem;
   }

    .navbar.fixed-top {
    top: 0px !important; 
    }
    html body .top-bar {
        display: none; 
    }
    
    .display-4 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .navbar-collapse {
        display: none !important; /* Önce gizle */
    }

    .navbar-toggler[aria-expanded="true"] + .collapse {
        display: block !important; /* Tıklanınca aç */
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .nav-item {
        width: 100% !important;
    }

    .nav-link {
        padding: 12px 20px !important;
        width: 100% !important;
        text-align: left !important;
    }


    .dropdown-menu {
        display: none;
        flex-direction: column !important;
        width: 100% !important;

        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    .nav-item.show .dropdown-menu {
        display: block !important;
    }

    .dropdown-item {
        padding: 12px 30px !important;
        width: 100% !important;
  
    }


    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    .navbar-brand {
        margin-left: 20px; /* Logo için biraz boşluk */
    }

    .navbar-toggler {
        border: none; /* Toggler butonunu sadeleştir */
    }

}


.contact-info .phone, .contact-info .email {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #ffffff;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.navbar.fixed-top {
    top: 40px; /* top-bar yüksekliğine göre */
    z-index: 999; /* top-bar'ın altında */
    background-color: var(--white) !important;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
    flex-direction: row;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo-img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #000;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Carousel Stili */
#heroCarousel {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    background: none;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-text {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 30px;
}

.banner-buttons {
    display: flex;
    gap: 20px;
}

.btn-about, .btn-contact {
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s;
    color: var(--white);
}

.btn-about {
    background-color: var(--primary-red);
}

.btn-about:hover {
    background-color: #b71c1c;
}

.btn-contact {
    background-color: var(--primary-blue);
}

.btn-contact:hover {
    background-color: #1e88e5;
}

/* Bölüm Stili */
section {
    margin-top: 0px;
    padding: 60px 0;
}

h2 {
    color: var(--primary-red);
}

.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Form Stili */
.form-label {
    color: var(--primary-blue);
}

.form-control, .form-select {
    border-color: var(--primary-blue);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
}

/* Footer Stili */
footer {
    background-color: #212529;
    color: var(--white);
}

footer h5 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-red);
}

footer hr {
    border-color: var(--primary-blue);
}

/* Gezilerimiz Bölümü */
#trips {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#trips h2 {
    color: var(--primary-red);
    margin-bottom: 40px;
}

/* Program Linkleri */
.program-links li {
    margin-bottom: 10px;
}

.program-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.program-links a:hover {
    color: var(--primary-red);
}

.program-links i {
    color: var(--primary-blue);
}
.accordion-body {
    text-indent: 100px;
}

/* Genel Stil */
#amerika {
    background-color: #f8f9fa;
    color: #333;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-text {
    line-height: 1.8;
    color: #7f8c8d;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
}

/* Görsel Stil */
.img-fluid {
    max-width: 100%;
    height: auto;
    border: 2px solid #ecf0f1;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Liste Stilleri */
.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.program-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.program-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.program-link {
    display: block;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.program-link:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

/* Buton Stil */
.btn-primary {
    background-color: #3498db;
    border-color: #2980b9;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2471a3;
}

