.lazy-load {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.lazy-load.visible {
    opacity: 1;
}

body {
    font-family: 'Helvetica', sans-serif;
    background: aliceblue;
}

a {
    all: unset;
}

.home-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 853px;
    position: relative;
}

.overlay {
    opacity: 30%;
    background: black;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 0;
    height: 853px;
}

/* NAVBAR */
.logo-container {
    width: 250px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.logo-container img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.title {
    font-size: 28px;
    cursor: pointer;
}

.navbar-custom {
    background-color: rgba(70, 124, 145, 0.3) !important;
    z-index: 999;
    padding-top: 30px;
    position: fixed;
    transition: background-color 0.3s ease;
    align-content: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 5px;
}

@media (min-width: 990px) {
    .navbar-custom {
        background-color: rgba(70, 124, 145, 0.3) !important;
        padding-top: 30px;
        position: fixed;
        transition: background-color 0.3s ease;
        align-content: center;
        width: 100%;
        padding-left: 50px;
        padding-right: 20%;
    }
}

.navbar-custom.scrolled {
    background-color: #467c91 !important;
    z-index: 999;
}


.navbar-toggler {
    color: white !important;
    font-size: 18px;
    border: none;
}

.navbar-toggler-icon:focus,
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 18px;
    cursor: pointer;
}

.navbar-brand {
    font-weight: bold;
    color: white !important;
}

.nav-item {
    margin-left: 20px;
}

/* HOME */
.home-body {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.home-text-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.home-text-logo {
    width: 100px;
    object-fit: cover;
}

.home-text-title {
    font-size: 64px;
    color: white;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: 0.5px; /* İsteğe bağlı, harfler arası boşluk */
    font-family: "Times New Roman";
    font-style: italic;
}

.home-text-desc {
    font-size: 24px;
    color: white;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-style: italic;
}

/* VALUE SUB MENUS */
.value-subMenus {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -200px;
    display: flex;
    justify-content: center;
}

.value-subMenu {
    z-index: 10;
    min-height: 300px;
    min-width: 100px;
    width: 25%;
    border: 1px solid white;
    background: white;
    text-align: center;
    padding: 20px 3px 0 3px;
    margin-right: 5px;
}

.value-subMenu img {
    width: 80px;
    height: 80px;
}

.value-subMenu-title {
    font-size: 3vw;
    max-font-size: 3vw;
    font-weight: bold;
    margin-top: 20px;
}

.value-subMenu:hover .value-subMenu-desc {
    cursor: pointer;
    color: black;
}

.value-subMenu:hover .value-subMenu-title {
    font-size: 4vw;
    cursor: pointer;
    color: black;
}

.value-subMenu-desc {
    font-size: 3vw;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .value-subMenu-title {
        font-size: 18px;
        max-font-size: 3vw;
        font-weight: bold;
        margin-top: 20px;
    }

    .value-subMenu-desc {
        font-size: 15px;
        margin-top: 20px;
    }

    .value-subMenu:hover .value-subMenu-title {
        font-size: 24px;
        cursor: pointer;
        color: black;
    }
}

/* ABOUT */
.section-about {
    margin-top: 20px;
    background: white;
    min-height: 300px;
    height: auto;
    align-content: center;
}

.left-about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-group {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.about-btn {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #467c91;
    color: white;
    border: none;
    cursor: pointer;
}

.about-btn:hover {
    background-color: #0056b3;
    color: white;
}

.content-about {
    position: relative;
    z-index: 10;
    justify-content: center;
    display: flex;
    padding: 10px;
    align-content: center;
}

.logo-about {
    object-fit: cover;
    height: 200px;
}

.about-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.about-desc {
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    max-width: 1024px;
}

/* PROBLEM */
.section-problem {
    margin-top: 20px;
    min-height: 500px;
    height: auto;
    align-content: center;
}

.content-problem {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    align-content: center;
}

.problems-title-box {
    width: 100%;
    text-align: center;
    background: #467c91;
    align-content: center;
}

.problem {
    padding: 20px;
    width: 30%;
    min-width: 200px;
    max-width: 350px;
    min-height: 350px;
    margin: 10px;
    text-align: center;
    background: white;
}

.problem img {
    object-fit: cover;
    width: 80px;
    height: 80px;
}

.problems-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    text-orientation: mixed;
    position: relative;
    color: white;
}

.problem-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.problem-desc {
    font-size: 14px;
    margin-top: 20px;
}

/* STATISTICS */
.section-statistics {
    background: white;
    margin-top: 20px;
    min-height: 500px;
    height: auto;
    align-content: center;
}

.content-statistics {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    align-content: center;
}

.statistic {
    width: 30%;
    max-width: 350px;
    margin: 30px;
    text-align: center;
}


.statistic-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: #467c91;
}

.statistic-desc {
    font-size: 14px;
    margin-top: 20px;
}

/* BOOKS */
.section-books {
    margin-top: 20px;
    min-height: 500px;
    height: auto;
    align-content: center;
}

.content-books {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.books-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
    text-align: center;
}

.books {
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.book {
    margin: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    min-height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    align-items: center;
    position: relative;
    display: flex;
}

.book-buttons {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.book img {
    object-position: center;
    object-fit: contain;
    width: 160px;
    min-height: 300px;
    display: block;
    margin-right: 10px;
}

.book-title {
    font-size: 18px;
    font-weight: bold;
}

.book-desc {
    font-size: 14px;
}

.book-btn {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #467c91;
    color: white;
    border: none;
    cursor: pointer;
}

.book-btn:hover {
    background-color: #0056b3;
    color: white;
}

/* radioShowS */
.section-radioShows {
    background: white;
    margin-top: 20px;
    min-height: 500px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;
}

.content-radioShows {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.radioShows-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.radioShows-desc {
    font-size: 14px;
}

.radioShows {
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.radioShow-card {
    margin: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;

}

.radioShow-img {
    object-fit: cover;
    width: 80px;
}

.radioShow-title {
    font-size: 16px;
    font-weight: bold;
}

.radioShow-top {
    position: relative;
    display: inline-block;
}

.radioShow-date {
    font-size: 14px;
    text-align: right;
    justify-content: end;
}

/* CONTACT */
.section-contact {
    margin-top: 20px;
    min-height: 500px;
    height: auto;
    align-content: center;
}

.content-contact {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    display: flex;
    align-content: center;
}

.contact-info {
    padding: 20px;
    background: #467c91;
    color: white;
    width: 20%;
    min-width: 300px;
    justify-content: center;
    align-content: center;
    text-align: center;
    flex-wrap: wrap;

}

.contact-form {
    padding: 20px;
    width: 30%;
    min-width: 300px;
}

.contact-desc {
    font-size: 18px;
    padding-top: 10px;
    color: white;
}

.contact-text {
    font-size: 14px;
    font-weight: 300;
    color: white;
}

/* PARTNERS */
.section-partners {
    background: white;
    margin-top: 20px;
    min-height: 300px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;
}

.content-partners {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.partners-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.partners {
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.partner {
    padding: 10px;
    height: 85px;
    margin: 5px;
    background: white;
    object-fit: cover;
}

/* FOOTER */
.section-footer {
    height: auto;
}

.content-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
    width: 100%;
    padding: 20px 50px;
    align-items: center;
    background-color: #467c91;
    color: white;
}

.footer-left-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-left-area-logo {
    width: 150px;
    height: 60px;
    overflow: hidden;
    position: relative;

}

.footer-left-area-logo img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer-left-area span {
    font-size: 20px;
}

.footer-left-area a {
    font-size: 14px;
}

.content-footer a {
    margin-right: 5px;
    cursor: pointer;
}

.content-footer a:hover {
    color: white;
}

.footer-signature {
    height: 32px;
    text-align: center;
    font-size: 0.8em;
    background-color: black;
    color: white;
    padding: 10px 0;
}

.footer-signature a {
    text-decoration: none;
    color: inherit;
}

.footer-signature a:hover {
    color: aliceblue;
    cursor: pointer;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex-grow: 1;
    padding-top: 90px;
}

/*Poems*/
.section-poems {
    min-height: 500px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;
}

.content-poems {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.poems-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.poems-desc {
    font-size: 14px;
}

.poems {
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}


.poem-card {
    margin: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.poem-card:hover {
    transform: translateY(-4px);
}

.poem-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0077b6;
}

.poem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poem-img {
    object-fit: cover;
    height: 40px;
    width: 40px;
}

.poem-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.poem-subtitle {
    font-size: 0.95em;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
}

.audio-container {
    margin-top: 10px;
    display: none;
}

.audio-container audio {
    width: 100%;
}

.poem-audio {
    width: 100%;
}

.poem-btn {
    padding: 8px 16px;
    min-width: 100px;
    font-size: 16px;
    background-color: #467c91;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.poem-btn:hover {
    background-color: #0056b3;
    color: white;
}

.poem-footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.poem-footer .poem-btn,
.poem-footer .poem-audio {
    flex: 1 1 100%;
    max-width: 100%;
}

.poem-footer.two-elements .poem-btn {
    flex: 0 0 47%;
    max-width: 47%;
}

.poem-footer.two-elements .poem-audio {
    flex: 0 0 66%;
    max-width: 66%;
}

.poem-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.poem-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.poem-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.poem-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.poem-modal-close:hover {
    color: black;
}

.poem-modal-body {
    text-align: center;
    margin-top: 20px;
    white-space: pre-line;
}

/*Links*/
.section-links {
    min-height: 500px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;
}

.content-links {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.links-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.links-desc {
    font-size: 14px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.link-card:hover {
    transform: translateY(-4px);
}

.link-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0077b6;
}

.link-card a {
    color: #1d3557;
    text-decoration: none;
    word-break: break-word;
    cursor: pointer;
}

.link-card a:hover {
    text-decoration: underline;
}


/*Articles*/
.section-articles {
    min-height: 500px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;
}

.content-articles {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
    align-content: center;
}

.articles-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.articles-desc {
    font-size: 14px;
}

.articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.article-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
}

.article-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0077b6;
}

.article-card p {
    color: #1d3557;
    text-decoration: none;
    word-break: break-word;
}


.article-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.article-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1024px;
    position: relative;
}

.article-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.article-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.article-modal-close:hover {
    color: black;
}

.article-modal-body {
    text-align: center;
    margin-top: 20px;
    white-space: pre-line;
}

.article-btn {
    padding: 8px 16px;
    min-width: 100px;
    font-size: 16px;
    background-color: #467c91;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.article-btn:hover {
    background-color: #0056b3;
    color: white;
}

/*ALBUM*/

.section-albums {
    min-height: 500px;
    height: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    align-content: center;

}

.content-albums {
    position: relative;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 50px;
}

.albums-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 10px;
    color: #467c91;
}

.albums-desc {
    font-size: 14px;
}

.album-list {
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.album-item {
    margin: 10px;
    background-color: white;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    min-width: 200px;
    max-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    cursor: pointer;
}

.album-item p {
    word-break: break-word;
    white-space: normal;
    text-align: center;
}

.album-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.album-icon {
    font-size: 60px;
    color: #888;
}

.album-btn {
    padding: 8px 16px;
    min-width: 100px;
    font-size: 16px;
    background-color: #467c91;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.album-btn:hover {
    background-color: #0056b3;
    color: white;
}

.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.media-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.media-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
