/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure the body takes up the full height and uses a cool font */
body {
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

header {
    margin-bottom: 5px;
}

/* Style the horizontal line */
header hr {
    width: 80%;
    margin: 20px auto;
    border: 0;
    border-top: 2px solid #000;
}

h1 {
    margin: 0
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-top: 20px;
}

nav {
    margin: 20px 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
}

nav a:hover {
    background: #e8491d;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 250px;
    height: auto;
    image-rendering: optimizeQuality;
}

main {
    flex: 1;
    width: 100%;
    max-width: 600px;
}

footer {
    margin-top: 20px;
}


section {
    margin: 40px 0;
    margin-bottom: 10px;

}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 70vh;
}

.gallery {
    display: flex;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    border-radius: 20px;
    /* Round the edges */
    display: block;
    object-fit: contain;
    /* Ensure the image fits within the container without cropping */
}

.caption {
    margin-top: 10px;
    font-size: 16px;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(128, 0, 128, 0.7);
    color: white;
    border: none;
    padding: 17px;
    height: 85px;
    cursor: pointer;
    z-index: 1;
    border-radius: 10px;
    /* Added border-radius for rounded edges */
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}

.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #3a3a3a;
}

.ekko-lightbox .modal-content {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    /* Increased rounding for the lightbox */
}

.ekko-lightbox .modal-header {
    border: none;
}

.ekko-lightbox .close {
    color: red;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 0px;

    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    width: 60px;
    height: 60px;
}

.ekko-lightbox .modal-body img {
    border-radius: 20px;
}

/* Contact Form Styles */
#contact {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

#contact h2 {
    margin-bottom: 20px;
}

#contact .form-group {
    margin-bottom: 16pt;
}

#contact .btn {
    background-color: #800080;
    border: none;
}

#contact .btn:hover {
    background-color: #5a005a;

}

.social-links {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 22px;
}

social-links li {
    display: inline-block;
    text-align: center;
    margin-top: 15px;
    vertical-align: middle;
}

.social-links i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

.social-links a {
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
}

.social-links a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 16px;
    /* Increase the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Color of the scrollbar thumb on hover */
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Color of the scrollbar track */
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}