/* Applying the sleek, skinny font */
body {
    font-family: 'Raleway', sans-serif;
    background-color: #1a1a1a;
    color: #E5E7EB;
}

/*
================================================================================
|   >>>   MOBILE OPTIMIZATION FIX   <<<                                        |
|   This prevents the user from zooming out past the website's borders.        |
================================================================================
*/
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Custom class for textures */
.text-texture {
    /* This class now sets the text color to black */
    color: black;
}

.border-texture {
    border: 4px solid;
    border-image-source: url('download (1).jfif');
    border-image-slice: 1;
    border-image-repeat: stretch;
}

/* Swiper custom styles */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.7));
}
.swiper-pagination-bullet-active {
    background: #fff;
}

/*
================================================================================
|   >>>   MOBILE LAYOUT FIX   <<<                                              |
|   Adjusts the position of the slideshow pagination dots.                     |
================================================================================
*/
.swiper-pagination {
    bottom: 10px !important;
}

/* Alluring shadow for the slideshow */
.swiper-container {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

/* Fullscreen Modal styles */
#fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}
#fullscreen-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
#close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
