@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Full-width container for the gallery */
/* Full-width container for the gallery */
.animated-gallery-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
}
@media (max-width: 768px) {
    .animated-gallery-container {
        background-size: cover;
    }
}
/* Style for "Read More" link */
.gallery-item a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    background-color: #007acc; /* Button color */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */   
}

.gallery-item a:hover {
    background-color: #005f9e; /* Darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Deeper shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
    color: #e0f0ff; /* Lighter text color on hover */
}
/* Individual gallery item */
.gallery-item {
    flex: 0 0 100%; /* Each item takes full width */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    object-fit: scale-down;
}
.gallery-item h3 {
    color: #d5a4e7;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 2px 2px rgb(16, 2, 99);
}
/* Gallery image styling to fit the container */
.gallery-item img {
    width: 100%;
    height: 60%;
    object-fit:scale-down; /* Ensures the image fully covers the container */
    object-position: center; /* Centers the image within the container */
}

/* Animated gallery styling */
.animated-gallery {
    position: relative;
    width: 100%;
    max-width: 800px; /* Maximum width of the gallery content */
    margin: auto;
    height: 90vh;
}

/* Arrows for navigation */
.animated-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(100, 8, 112, 0.699);
    color: white;
    border: none;

    cursor: pointer;
    font-size: 24px;
    z-index: 9;
    transition: background-color 0.3s;
    border-radius: 30px;
    width: 40px;
    height: 40px;
}

.animated-left-arrow {
    left: 10px;
}

.animated-right-arrow {
    right: 10px;
}

.animated-arrow:hover {
    background-color: rgb(68, 1, 107);
}

/* Gallery window */
.animated-gallery-window {
    width: 100%;
    overflow: hidden; /* Hides overflowing content */
}

/* Track for sliding items */
.animated-gallery-track {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
    height: 80vh;
}


/* Pagination dots */
.animated-pagination-dots {
    position: absolute;
    width: 60%;
    margin-top: -20px;
    margin-right: 20%;
    margin-left: 20%;
    text-align: center;
}

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

.animated-pagination-dot.active {
    background-color: #333;
}
.welcome{
    position: relative;
    bottom: 80px;
    color: #cdaed8;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 2px 2px rgb(16, 2, 99);
    font-size: 25px;
    display: flex;
    margin-bottom: 5px;
    text-align: center;
}
@media (max-width: 768px) {
    .welcome {
        font-size: 15px;
    }
}