﻿/* General Reset for full width and height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Container for content center, left, and right */
.contentcenter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Allows wrapping for responsive design */
    width: 100%;
    background-color: #f2f2f2;
    margin: 0 auto;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 3px, inset rgba(0, 0, 0, 0.2) 0px -1px 2px;
    border-radius: 20px;
    overflow: hidden;
}

/* Content left and right sections */
.contentleft, .contentright {
    flex: 1;
    margin: 25px;
    padding: 20px;
  
    border-radius: 10px;
    box-sizing: border-box;
    min-height: 300px; /* Ensure minimum height */
}

/* Make the content evenly spread and full width on smaller screens */
@media only screen and (max-width: 600px) {
    .contentcenter {
        flex-direction: column; /* Stack content vertically */
    
    }

    .contentleft, .contentright {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    
    }
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Headings */
h3 {
    font-size: 2rem;
    color: #333;
}

@media only screen and (max-width: 600px) {
    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Parallax sections */
.parallax, .parallax50, .parallax100 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax50 {
    height: 50vh;
}

.parallax100 {
    height: 100vh;
}

@media screen and (max-width: 600px) {
    .parallax, .parallax50, .parallax100 {
        background-attachment: initial;
        height: 40vh;
    }

    .parallax100 {
        height: 50vh;
    }
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    font-size: 18px;
    color: white;
    user-select: none;
    transition: 0.6s ease;
    border-radius: 3px;
}

.next {
    right: 0;
}

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.text {
    color: #f2f2f2;
    font-size: 15px;
    position: absolute;
    bottom: 8px;
    text-align: center;
    width: 100%;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.fadecustom {
    animation-name: fadecustom;
    animation-duration: 1.5s;
}

@keyframes fadecustom {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Collapsible content */
.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100vw;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .collapsible:hover {
        background-color: #555;
    }

/* Mobile view classes */
.mobileView {
    display: none;
}

@media screen and (max-width: 600px) {
    .mobileView {
        display: block;
    }
}

.desktopView {
    display: block;
}

@media screen and (max-width: 600px) {
    .desktopView {
        display: none;
    }
}

/* Common text style */
.commonPageText {
    font-size: large;
    text-indent: 50px;
}

@media screen and (max-width: 600px) {
    .commonPageText {
        font-size: medium;
        text-indent: 10px;
    }
}

/* Header text style */
.header-pic-text {
    font-size: xx-large;
    color: darkslateblue;
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    .header-pic-text {
        font-size: large;
        margin-left: 0px;
    }
}

.picOverLapYellow {
    font-size: large;
    color: #F7FF48;
    text-shadow: 0 0 10px #0F483F, 0 0 20px #0F483F, 0 0 30px #0F483F;
}

@media screen and (max-width: 600px) {
    .picOverLapYellow {
        font-size: medium;
    }
}
