/* Reset and Box Sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Flexbox for Alignment */
.flex-center {
    display: flex;
    align-items: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background-color: #25d366;
    /* WhatsApp's brand color */
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    /* Remove default link styling */
}

.whatsapp-button:hover {
    background-color: #128c7e;
    /* Slightly darker shade on hover */
}

.whatsapp-button i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 1.2em;
    /* Adjust icon size as needed */
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background-color: #0088cc;
    /* Telegram's brand color */
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    /* Remove default link styling */
}

.telegram-button:hover {
    background-color: #0077b3;
    /* Slightly darker shade on hover */
}

.telegram-button i {
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 1.2em;
    /* Adjust icon size as needed */
}

/* Responsive Image Link Styles */
.responsive-link {
    display: block;
    max-width: 100%;
    text-align: center;
}

.responsive-link img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .responsive-link img {
        max-width: 450px;
    }
}

/* General Content Styling */
body {
    background-color: #272728;
    color: #F0EDCF;
    text-align: center;
    text-transform: capitalize;
}

h1,
h2,
a {
    color: #40A2D8;
}

iframe {
    width: 100%;
    height: 500px;
    border: 4px solid red;
    overflow: hidden;
}

.responsive-gif {
    display: block;
    width: 100%;
}

.responsive-gif img {
    display: block;
    width: 100%;
    height: 250px;
    max-height: 300px;
    border-radius: 50px;
    object-fit: cover;
}

#player {
    height: 500px;
    width: 100%;
}



.responsive {
    display: block;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.responsive img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 40px;
}

/* Input Box Styles */
.inputBox_container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 20em;
    width: 100%;
    height: 3em;
    background-color: #000000;
    border-radius: 1.5em;
    overflow: hidden;
    margin: auto;
}

.search_icon {
    height: 1.5em;
    padding: 0 0.8em;
    fill: #abb2bf;
}

.inputBox {
    background-color: transparent;
    color: #fff;
    outline: none;
    width: 100%;
    border: 0;
    padding: 0.5em 1em;
    font-size: 1.2em;
}

::placeholder {
    color: #abb2bf;
}

/* Navigation Styles */
nav {
    position: relative;
    background-color: #333333;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    background-color: #555555;
}

/* Card Styles */
.card {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    margin: 20px;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: center;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #EEEEEE;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    nav ul li a {
        padding: 8px 16px;
    }

    .card {
        width: 150px;
        height: 250px;
        margin: 10px;
    }

    .card-title {
        font-size: 14px;
    }
}

/* Fixed Button and Modal Styles */
#followUsBtn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    pointer-events: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #e0e0eb;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 20px;
    color: blue;
}

.close-button {
    color: blue;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: darkblue;
}

body.modal-open {
    pointer-events: none;
}

body.modal-open #followUsModal {
    pointer-events: auto;
}

body.modal-open #followUsBtn {
    pointer-events: auto;
}