.page-container {
    display: flex;
}

.sidebar {
    display: flex;
    flex-direction:column;

}

.form-btn {
    border-radius: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    flex-direction: column;
    display: flex;
    width: 60px;
    height: 60px;
    text-decoration: none;
}
    .form-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
    }

    .form-btn img {
        width: 35px;
        height: 35px;
        padding-top: 5px;
    }

    .form-btn span {
        color: #fff;
        font-family: 'Chomsky', serif;
        font-size: 10px;
    }


.main-content {
    flex: 1; /* space*/
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
}

.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    height: 55%;
    width: 25%;
    border-radius: 6px;
    background-color: rgba(69, 70, 42, 0.9);
    font-family: 'MedievalSharp', serif;
    color: beige;
}

.event-card {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    background-color: transparent;
    display: flex;
    align-items: stretch;
}

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px; /* icon size */
    padding: 0 12px; 
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px 0 0 6px;
    flex-shrink: 0; 
}

.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
    padding-bottom:1px;
}

    .event-card:hover {
        transform: translateY(-3px);
    }

    .event-card .card-body {
        padding: 12px 15px;  
    }

    .event-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #e6b800;
    }


    /* Mobil uyum (576px ve altı) */
@media (max-width: 576px) {

    .page-container {
        flex-direction: row; /* sidebar ve main content alt alta */
    }

    .sidebar {
        flex-direction: column; /* sidebar ikonları yatay */
        justify-content: start;
        gap: 5px;
        margin-bottom: 15px;
        width: 100%;
        margin-right: 10px;
    }

    .form-btn {
        width: 40px;
        height: 40px;
    }

    .form-btn img {
        width: 25px;
        height: 25px;
        padding-top: 2px;
    }

    .form-btn span {
        font-size: 8px;
    }

    .main-content {
        flex-direction: column; /* insta post ve upcoming events alt alta */
        gap: 20px;
        width: 75%;
        justify-content: center;
    }

    .upcoming-events {
        width: 100%; /* tüm genişliği kaplasın */
        height: auto; /* yükseklik otomatik */
        
    }

    .ig-embed-wrapper {
        width: 100%; /* instagram embed tam genişlik */
        display: flex;
        justify-content: center;
        margin-left: 30px;
    }

    .ig-embed-wrapper blockquote.instagram-media {
        max-width: 100% !important;
        width: 100% !important;
        
    }
}




  



