html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

body {
    background-color: #fafaf8;
    padding-top: 70px;
}

.navbar-brand{
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    transition: color 0.3 ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(136, 61, 18);
}

.navbar-dark .navbar-toggler-icon {
    background-color: rgba(247, 247, 247, 0.8);
    border-radius: 3px;
    padding: 5px;
}

.section-title {
    font-size: 1.6rem;
    color: #232d5a;
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: bold;
    font-family: 'Bree Serif', serif; /* Bree Serif fontunu kullan */
    text-shadow: 0px 0px 2px rgba(12, 12, 12, 0.355); /* Hafif gölge */
}

.pump-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;


}

.pump-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.pump-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #ffffff; /* Boşluklar için arka plan rengi ekleyebilirsin */
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1100;
    display: flex;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 40%;
    max-width: 95vh; /* Maksimum genişlik belirlenerek aşırı büyümesi engellenir */
    max-height: 95vh; /* Ekranın %80'ini geçmesini önler */
    overflow: auto; /* İçerik büyükse kaydırma çubuğu çıkar */
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-image {
    width: 70%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.popup-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.popup-details li {
    font-size: 1rem;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #b10000;
}

@media (max-width: 768px) {
    .popup-content {
        width: 80%;
    }
}

.footer {
    background: #333;
    color: white;
    padding: 15px;
    font-size: 0.9rem;
}