/*
 * Last Edited By: Cael McDermott
 * Date: May 2nd, 2025
 * Course: CS 367 - Practicum
 * File: homescreen.css
 *
 * This CSS file styles the homepage of the Los Angeles Kite Fighting (LAKF) website.
 * It defines the layout, typography, buttons, banner, and responsive design for 
 * various screen sizes, ensuring a clean and engaging user interface.
 */
 
 
@import url('https://fonts.googleapis.com/css2?family=Faster+One&family=Inter:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #FFD6C0;
}


h1 {
    position: absolute;
    top: 35vh;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EC368D;
    font-size: 3rem;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-family: 'Faster One';
    font-weight: 400;
    margin: 1rem auto;
    max-width: 90%;
  }  

h2, p {
    margin: 1rem auto;
    max-width: 90%;
    color: #EC368D
}

.header-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background-color: #FFA5A5; 
    z-index: 10;
}

.lakf-logo {
    position: fixed;
    top: 10px;
    left: 20px;
    font-size: 24px;
    color: #EC368D;
    font-family: 'Faster One', cursive;
    z-index: 11;
}

.help-button {

    position: fixed;
    top: 5px;
    right: 20px;
    font-size: 24px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 11;
    background-color: #EC368D;
    border: 1px solid #2C2C2C;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: auto;
    text-decoration: none;
}

button {
    padding: 12px 24px;
    background-color: #78C0E0;
    color: #fff;
    border: 1px solid #2C2C2C;
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    min-width: 142px;
}

button:hover {
    transform: scale(1.05);
}


.button-bar {
    display: flex;
    justify-content: center;
    align-content: center;  
    width: 100%;
    background-color: #FFA5A5;
    padding: 10px 0;
}


.button-container {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


@media screen and (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .lakf-logo {
        font-size: 18px;
        left: 10px;
    }

    button {
        width: 100%;
        max-width: 200px;
    }
}

.banner{
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

.small-image {
    width:90%;
    max-width: 900px;  
    height: auto;      
    display: block;    
    margin: 0 auto;    
}

.img-holder{
    object-position: center;
    margin:auto;
    width: 40%;
    min-width: 400px;
    height:400px;
    border: 1px solid #EC368D;
  }
  
.home-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.helptext {
    margin: 1rem auto;
    max-width: 90%;
    color: #EC368D;
    font-size: 4rem; 
}