/* Main css file; all html files link to this css file */

/* Website Main Colors:
Sky Blue - #A1CDF4
Emerald - #4CB963 */

/* Styling for Main Tags: */
/* Sets font for entire website */
body{
    font-family: Sans-Serif;
}
/* Page Title */
h1{
    font-size: 48px;
}

/* Section Title */
h2{
    font-size: 38px;
}

/* Subsection title */
h3{
    font-size: 28px;
}

p{
    font-size: 18px;
}

th, td{
    font-size: 18px;
}


/* Styling for Buttons and Links (most of them) */
.btn-normal{
    font-size: 18px;
    color: white;
    background-color: #4CB963;
}

.btn-normal:hover{
    color: white;
    filter: brightness(90%);
}

.link-normal{
    font-size: 18px;
    color: #4CB963;
    text-decoration: none;
}

.link-normal:hover{
    color: #4CB963;
    text-decoration: underline;
}


/* Styling for Navbar (on most pages) */
nav{
    min-height: 100px;
    background-color: #A1CDF4;
}

.home-button{
    background-color: #A1CDF4;
    font-size: 26px;
}

.home-button:hover{
    filter: brightness(90%);
}

.nav-item{
    margin-right: 4px;
    margin-left: 4px;
}

.nav-link{
    font-size: 22px;
}

.nav-link:hover{
    text-decoration: underline;
}

nav .dropdown:hover .dropdown-menu{
    display: block;
}

/* Styling for Footer */
footer{
    position: relative;
    height: 40vh;
    background-image: url("https://codehs.com/uploads/874bd08821ec53d25b30736f32757e1e");
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(120%);
}

footer div.row{
    height: 100%;
}

footer a{
    position: relative;
    top: 60%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #333333;
    text-decoration: none;
}

footer a:hover{
    color: black;
    text-decoration: underline;
}


/* Hero Image */
.hero{
    height: 70vh;
    position: relative;
}
.hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(95%);
}
.hero-txt{
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.hero-txt h1{
    font-size: 52px; 
    font-weight: bolder;
    color: white;
}


/* Other */
.section-img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.sound-effect{
    display: none;
}

.sky-blue{
    background-color: #A1CDF4;
}

.total{
    font-size: 20px;
}