/*Importing fonts from google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&family=Indie+Flower&family=Playfair+Display+SC&family=Send+Flowers&display=swap');

/* effect for smooth transaction between sections*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

/*Defining background color*/
body {
    background-color: #E1F4D7;
}

/* Adding style to the header*/
#title h1 {
    text-align: center;
    font-family: 'Send Flowers', cursive;
    font-size: 56px;
    margin: 30px 0 0 0;
    color: #6F7869;
    text-shadow: 0 0 10px whitesmoke;
}

#title a {
    text-decoration: none;
    color: inherit;
}

#title a:hover {
    color:#f1f2b9;
    text-shadow: 0 0 10px #6F7869;
}

#menu a:hover {
    color:#f1f2b9 ;
    text-shadow: 0 0 10px white;
}

#title h5 {
    text-align: center;
    font-family: 'Indie Flower', cursive;
    font-size: 18px ;
    margin: 0 auto;
    color: #6F7869;
}

/* Adding style to the navigation menu*/
#menu {
    text-align: center;
    margin: 15px 0 4px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #6F7869;
    font-size: 18px;
    color: white;
    font-family: 'sans-serif', Times New Roman;
    border-radius: 10px;
    width: 100%;
}

/* Media query for better fit nav bar in smaller screens*/
@media only screen and (max-width: 600px) {
    #menu {
        font-size: 16px;
    }
}

#menu a {
    margin-left: 20px;
    text-decoration: none;
    color: inherit;
}

#top-fixed {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #E1F4D7;
    z-index:100;
}

/* Adding style to the Image*/
#cover-outer {
    height: 600px;
    width: 100%;
    position: relative;
    display: flex;
}

#cover-picture img {
    height: 600px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Defining area for text over the image*/
#cover-text h2{
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid #6F7869;
    color: #6F7869;
    text-shadow: 0 0 10px white;
}

#cover-text {
    font-size: 16px;
    font-family: 'sans-serif', Times New Roman;
    text-align: left;
    color: #6F7869;
    text-shadow: 0 0 10px white;

    width: 300px;
    height: 200px;

    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;

    background-color: rgba(225,244,215, 0.8);

    bottom: 20px;
    right: 80px;
    
    position: absolute;
}

/*Media query for Ipad and Medium devices screen cover-text positioning behaviour*/
@media only screen and (min-width: 768px) {
    #cover-text {
        width: 70%;
        height: 150px;
        top: 600px;
    }
}
/*Media query for smart phones and Small devices screen cover-text positioning behaviour*/
@media only screen and (max-width: 600px){
    #cover-text {
        width: 200px;
        height: 250px;
        top: 500px;
        right: 40px;
    }
}

/*Media query for Large devices screen cover-text positioning behaviour*/
@media only screen and (min-width: 1200px){
    #cover-text {
        width: 300px;
        height: 200px;
        top: 500px;
        right: 40px;
    }
}

/* Adding style to the About Us section*/

#second-section {
    height: 100%;
    width: 100%;
    background-color: #f1f2b9;
    /*padding-top: 7em;
    padding-bottom: 7em;*/
}

#content-div {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 4em;
    padding-top: 40px;
    padding-bottom: 80px;
}

#about-us-title {
    text-align: center;
    top: 80px;
    font-family: 'Send Flowers', cursive;
    color: #6F7869;
    font-size: 56px;
    border-bottom: 1px solid #6F7869;
}

#organized-by {
    height: 100%;
    width: 31.25em;
    text-align: center;
    border-radius: 5%;
    top: 150px;
    left: 20%;
    box-shadow: 0 0 10px #6F7869;
    background-color: #E1F4D7;
    font-family: 'sans-serif', Times New Roman;
    padding-bottom: 5px;
}

@media screen and (max-width: 950px) {
    #organized-by {
        width: 85vw;
        height: 100%;
    }
}

#profile-picture {
      height: 20.31em;
      width: 20.31em;
      border-radius: 50%;
      box-shadow: 0 0 10px #6F7869;
      left: 60%;
      top: 140px;
      object-fit: cover;
}

#organized-by h3 {
    text-align: center;
    font-family: 'Indie Flower', cursive;
    color:#6F7869;
    text-shadow: 0 0 10px white;
}

#organized-by h1 {
    font-family: 'Send Flowers', cursive;
    font-size: 46px;
    color: #6F7869;
    text-shadow: 0 0 10px white;
}

#organized-by p {
    color:#6F7869;
    padding: 0 40px 0 40px;
    text-align: left;
}

/*Adding style to the gallery section*/

#gallery-section {
    height: auto;
    width: 100%;
    /*padding-top: 7em;
    padding-bottom: 7em;*/
}

#our-community-title {
    text-align: center;
    top: 80px;
    font-family: 'Send Flowers', cursive;
    color: #6F7869;
    font-size: 56px;
    border-bottom: 1px solid #6F7869;
}

.gallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.pictures{
    height: 260px;
    width: 260px;
    border-radius: 5%;    
    box-shadow: 0 0 10px #6F7869;
    object-fit: cover;
}

.texts {
    height: 260px;
    width: 260px;
    color: #6F7869;
    text-align: center;
    font-family: 'Send Flowers', cursive;
    font-size: 42px;
    padding-top: 35px;
}


/* Join us Section*/
#time-table-container {
    height: 100%;
    width: 100%;
    position: relative;
    background-color: #f1f2b9;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-top: 3em;
    padding-bottom: 3em;
    gap: 2em;
}

#time-table {
    height: 620px;
    width: 500px;
    text-align: center;
    border-radius: 5%;
    box-shadow: 0 0 10px #6F7869;
    background-color: #E1F4D7;
    font-family: 'sans-serif', Times New Roman;
}

@media screen and (max-width: 950px) {
    #time-table {
        width: 85vw;
        height: 100%;        
        padding-bottom: 5px;
    }
}

#time-table h1{ 
    color: #6F7869;
    text-align: center;
    font-family: 'Send Flowers', cursive;
    font-size: 42px;    
    word-spacing: 20px;
}

#time-table p {
    color: #6F7869;
    text-align: center;
    padding-right: 25px;
    padding-left: 25px;
    font-size: 20px;
}

#maps {
    height: 250px;
    width: 450px;
    box-shadow: 0 0 10px #6F7869;
    border-radius: 5%;
}

@media screen and (max-width: 950px) {
    #maps {
        width: 95%;
        height: auto;
    }
}

#join-us {
    height: 620px;
    width: 500px;
    text-align: left;
    border-radius: 5%;
    top: 50px;
    box-shadow: 0 0 10px #6F7869;
    background-color: #E1F4D7;
    font-family: 'sans-serif', Times New Roman;
}

@media screen and (max-width: 950px) {
    #join-us {
        width: 85vw;
        height: 100%;
        padding-bottom: 20px;
    }
}

#join-us-title {
    color: #6F7869;
    text-align: center;
    font-family: 'Send Flowers', cursive;
    font-size: 42px;
}

.form-box {
    background-color: #f1f2b9;
    box-shadow: 0 0 10px #6F7869;
    height: 25px;
    width: 195px;    
	border-radius: 10px;
    color: #6F7869;
}

#join-us input:hover {
    border-color: #f1f2b9;
    animation-name: form-zoom;    
    animation-fill-mode: forwards;
}

@keyframes form-zoom {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}
form {
    padding-left: 10px;
    text-align: center;
}

#submit {
    background: #6F7869;
	color: white;
	border-style: outset;
    border-color: #6F7869;
    border-radius: 10px;
	height: 50px;
	width: 150px;
    font-family: 'sans-serif', Times New Roman;
    font-weight: bold;
}

#email {
    width: 195px;
}

.push  {
    height: 5px;
    width: 100%;
}

/*Footer */
footer {
    height: auto;
    width: 100%;
    background-color: #6F7869;
    bottom: 0;
}

#footer {    
    color: white;
    text-align: center;
    padding-top: 100px;
    font-size: 25px;
    text-decoration: none;
    word-spacing: 20px;
    padding-bottom: 3em;
}

#footer a {
    color: inherit;
    text-decoration: none;
}

#footer a:hover {
    color:#f1f2b9 ;
    text-shadow: 0 0 10px white;
}

#thank-you-container img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#thank-you-text {
    text-align: center;
    font-size: 16px;
    color: #6F7869;
    text-shadow: 0 0 10px white;
    width: 30%;
    height: auto;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(225,244,215, 0.9);
    border: 1px solid #6F7869;
    border-radius: 10px;
    position: absolute;
    left: 35%;
    top: 50%;
}

#thank-you-text h1 {
    font-family: 'Send Flowers', cursive;
    font-size: 42px;
}
