﻿html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

#form1 {
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0px !important;
    padding: 0px !important;
    max-width: 100%;
}

#header {
    background-color: rgba(47, 154, 218, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

#map {
    width: 100%;
    height: 836px; /* <-- burada sabit yükseklik */
}

.swiper-pagination-nr, .swiper-pagination-nr-2 {
    place-self: center !important;
    width: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
    text-align: center;
}



.swiper-container-nr {
    /*width: 90%;*/
    /*margin: auto;*/
    
}

.swiper-slide {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    /*border: 1px solid gray;*/
}

.card img {
    height: 300px;
    object-fit: cover;
    scale: 1;
}

.card-body {
    padding: 16px;
 
}

.card {
    height: 450px !important;
}

.card-title {
    
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next-nr, .swiper-button-prev-nr {
    color: #007bff;
}

.date {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px 0;
    margin-left: 30px;
    font-size: 14px;
    display: block;
}

.more-btn {
    display: block;
    text-align: center;
    background-color: #e2e2e2;
    color: #333;
    padding: 10px 0;
    margin-right: 30px;
    font-size: 14px;
    transition: 0.2s ease-out;
    text-decoration: none;
}


/* Store container */
.store-container {
    text-align: center;
    margin: 50px auto;
    max-width: 1500px;
}

/* Download buttons section */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping of items */
}

/* Download button styling */
.download-btn img {
    width: auto;
    height: 150px;
    margin-right: 8px;
    display: block;
    max-width: 100%; /* Ensure image is responsive */
}

/* QR code section styling */
.qr-code-section {
    margin-top: 20px;
}

    .qr-code-section p {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
    }

/* QR code container styling */
.qr-container {
    display: inline-block;
    width: 170px;
    height: 170px;
    margin: 20px;
    border-radius: 12px;
    padding: 10px;
    background-color: #f4f4f4;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* QR code label styling */
.qr-label {
    font-size: 14px;
    margin-top: 10px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column !important; /* Force stack elements vertically */
        align-items: center;
    }

    .qr-container {
        width: 150px;
        height: 150px;
    }

    .download-btn {
        display: block;
        margin-bottom: 20px;
    }

    .qr-code-section {
        text-align: center;
    }
}