/* Aadil Chasmawala May 2024 */
/* ------------------------------
Code for General Properties
--------------------------------- */
.mainContainer {
    margin-top: 70px;
    
}
body{
    background:url(panels/simple_grid.jpeg);
    background-size: auto;
}
/*---------------------------
Swiper  Properties
----------------------------*/
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    /*border-radius: 50%;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    top: 50%;
    padding: 20px 30px;
    z-index: 10;
}

/* Default for small screens */
.mySwiper .swiper-button-prev {
    left: 10%;
}
.mySwiper .swiper-button-next {
    right: 10%;
}

/* Medium screens */
@media (min-width: 768px) {
    .mySwiper .swiper-button-prev {
        left: 100px;
    }
    .mySwiper .swiper-button-next {
        right: 100px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .mySwiper .swiper-button-prev {
        left: 180px;
    }
    .mySwiper .swiper-button-next {
        right: 180px;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*height: 100%;*/
}

.swiper-slide img {
    max-width: 80%;
    max-height:650px;
    object-fit: contain;
    margin: auto;
    display: block;
    border-radius: 20px;
}
/*---------------------------
Choice Button and Choice slide Properties
----------------------------*/
.choice-button {
    padding: 20px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin: 10px 0; /* Add margin between buttons */
    text-align: center;
}

.choice-button1,
.choice-button2 {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    background-color: #0a0101;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin: 5px;
    height: 50px;
    width: 70px;
}

.choice-button1 {
    transform: translateX(315%);
}

.choice-button2 {
    transform: translateX(-315%);
}

.choice-button:hover {
    background-color: #412929;
}

*, ::after {
    box-sizing: initial;
}

.timeline1, .timeline2 {
    display: flex;
}

/*---------------------------
Other Navigation Buttons Properties
----------------------------*/

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px; /* Adds space between the image and the buttons */
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the buttons horizontally */
}

#home-button {
    padding: 10px 20px;
    background-color: #0a0101;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin: 10px auto;
    display: none;
    align-self: center;
}

/*Choice-text animation*/
#choice-text {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #000000;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                 0 0 20px rgba(255, 255, 255, 0.7),
                 0 0 30px rgba(255, 0, 0, 0.7),
                 0 0 40px rgba(255, 0, 0, 0.7),
                 0 0 50px rgba(255, 0, 0, 0.7),
                 0 0 60px rgba(255, 0, 0, 0.7),
                 0 0 70px rgba(255, 0, 0, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                     0 0 20px rgba(255, 255, 255, 0.7),
                     0 0 30px rgba(255, 0, 0, 0.7),
                     0 0 40px rgba(255, 0, 0, 0.7),
                     0 0 50px rgba(255, 0, 0, 0.7),
                     0 0 60px rgba(255, 0, 0, 0.7),
                     0 0 70px rgba(255, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.7),
                     0 0 30px rgba(255, 255, 255, 0.7),
                     0 0 40px rgba(255, 0, 0, 0.7),
                     0 0 50px rgba(255, 0, 0, 0.7),
                     0 0 60px rgba(255, 0, 0, 0.7),
                     0 0 70px rgba(255, 0, 0, 0.7),
                     0 0 80px rgba(255, 0, 0, 0.7);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                     0 0 20px rgba(255, 255, 255, 0.7),
                     0 0 30px rgba(255, 0, 0, 0.7),
                     0 0 40px rgba(255, 0, 0, 0.7),
                     0 0 50px rgba(255, 0, 0, 0.7),
                     0 0 60px rgba(255, 0, 0, 0.7),
                     0 0 70px rgba(255, 0, 0, 0.7);
    }
}

#first-slide-image {
    filter: blur(5px); /* Blur effect on the first slide image */
}

#start-button {
    padding: 20px 40px;
    background-color: #0a0101;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}


/*---------------------------
Main Heading Properties
----------------------------*/

.mainHeading {
    text-align: center;
    display: block;
    color: #170303;
    text-align: center;
    padding: 20px 20px;
    font-size: 3em;
    animation: colorChange 5s linear infinite, scaleUp 5s ease-in-out infinite, backgroundMove 10s ease infinite;
    background: linear-gradient(270deg, #ff0000, #00ff00, #0000ff, #ff00ff);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mainHeadingWrapper {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mainHeadingWrapper h1 {
    position: relative;
    z-index: 1;
    color: #333;
    font-size: 2em;
    margin: 0;
}


@keyframes colorChange {
    0% {
        color: #ff0000;
    }
    50% {
        color: #00ff00;
    }
    100% {
        color: #ff0000;
    }
}

@keyframes scaleUp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes backgroundMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/*---------------------------
Responsive Styling Properties
----------------------------*/
/* Styles for screens 767px or smaller */
@media (max-width: 767px) {
    .mainContainer {
        margin-top: 20px;
    }

    .mainHeading {
        font-size: 2em;
        padding: 10px 10px;
    }

    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        padding: 10px 15px;
    }

    .swiper-slide img {
        max-width: 100%;
        max-height: 300px;
    }

    .choice-button {
        font-size: 0.8rem;
        padding: 10px 15px;
        margin: 5px 0;
    }

    .choice-button1,
    .choice-button2 {
        width: 100px;
        height: auto;
        transform: translateX(0%);
        position: static;
    }

    .content-container img {
        margin-bottom: 10px;
    }

    #start-button {
        font-size: 1rem;
        padding: 15px 20px;
    }

    #home-button {
        font-size: 1rem;
        padding: 5px 10px;
    }

    #choice-text {
        font-size: 1.5rem;
    }
}

/* Styles for screens 768px and wider */
@media (min-width: 768px) {
    .mySwiper .swiper-button-prev {
        left: 100px;
    }

    .mySwiper .swiper-button-next {
        right: 100px;
    }
}

/* Styles for screens 1024px and wider */
@media (min-width: 1024px) {
    .mySwiper .swiper-button-prev {
        left: 180px;
    }

    .mySwiper .swiper-button-next {
        right: 180px;
    }
    .mainContainer{
        margin-bottom:70px;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        justify-content: flex-start;
        gap: 5px;
    }
}
