﻿/*

Author: Thomas Turnasella
Project: CST 161 Final - Fall 2022
Due Date: 12/20/22
File: homeStyles.css

CSS Stylesheet exclusively for the Home page

*/

/* Welcome Section */

#main

{
    display: flex;
    align-items: flex-start;
    gap: 1em;
    margin: 2em 15em;
}

#info

{
    display: flex;
    gap: 1em;
    flex-direction: column;
    width: 65%;
}

#info h1

{
    font-family: titleFont;
    font-size: 36px;
    margin: 0.5em 0em 0em 0em;
    letter-spacing: 2px;
}

#info #welcome, #info #discussion

{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.25em 1em;
    background-color: navajowhite;
    color: sienna;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

/* Current Video Styles */

#fungiVideo

{
    width: 90%;
    margin-bottom: 1em;
    border: 5px solid sienna;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

/* Fungi of the Month */

#fungiMonth

{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    padding: 0.25em 2em;
    background-color: darkolivegreen;
    color: cornsilk;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#fungiPic

{
    width: 350px;
    height: 350px;
    margin: 0px -5px;
    background-image: url('../img/wrinkledpeach1.png');
    background-size: cover;
    background-position: center;
    border: 5px solid cornsilk;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#fungiMonth h1

{
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: underline;
    text-align: center;
    letter-spacing: 1px;
    font-size: 24px;
    margin: 0.5em 0em 0.5em 0em;
}

#fungiMonth h2

{
    text-align: center;
    font-size: 17px;
    margin: 0.5em 0em 0.5em 0em;
}

#fungiMonth h3

{
    text-align: center;
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: -0.5em 0em 0.5em 0em;
}

/* Gallery Rollover Action Styles */

#gallery

{
    display: flex;
    justify-content: center;
    -webkit-flex-direction: row-reverse;
    -webkit-flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
}

#pic1, #pic2, #pic3, #pic4, #pic5

{
    padding: 5px;
    margin-top: 5px;

    transition-duration: 0.5s;
}

#pic1:hover, #pic2:hover, #pic3:hover, #pic4:hover, #pic5:hover

{
    transform: scale(1.5);
}

#pic2:hover ~ #fungiPic 

{
    background-image: url('../img/wrinkledpeach2.png');
}

#pic3:hover ~ #fungiPic 

{
    background-image: url('../img/wrinkledpeach3.jpg');
}

#pic4:hover ~ #fungiPic 

{
    background-image: url('../img/wrinkledpeach4.jpg');
}

#pic5:hover ~ #fungiPic 

{
    background-image: url('../img/wrinkledpeach5.jpg');
}