/* Define the display style for the main sections */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 10;

}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button, input, textarea {
    font-family: "Sour Gummy", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 10;
    padding: 10;
    background-color: #e1f8ed; /* Light pink */
    color: #333; /* Dark grey */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

p {
    padding: 8px 15px;
    text-align: center;
    margin: 0 auto;
}


/* Style for the row-display class */
.row-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 90%;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #9add9f75; /* Light pink */
}

/* Style for the bkg-block class */
.bkg-block {
    background-image: url(../images/green-waves.jpg);
    background-size: cover;
    background-position: center;
    color: #001005;
    text-align: center;
    padding: 20px;
    margin: 10px;
    width: calc(100% - 20px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5em;
}

/* Highlight all text inside .bkg-block */
.bkg-block, .bkg-block * {
    background-color: rgb(142, 226, 159, 0.5); /* Semi-transparent background */
    padding: 2px 4px;
}

/* Style for the item-tile class */
.item-tile {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-sizing: border-box;
}

.thumb-img {
    width: 100%; /* Matches the width of the containing div */
    height: auto; /* Keeps the aspect ratio intact */
    object-fit: cover; /* Optional: ensures the image scales well */
}

/*
.thumb-img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.5);

}
    */

.link-img{
    width: 40px;
    height: auto;
    display: block;
    margin: 10px;

}

#link-list{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#profile-pic{
    width: 150px;
    height: 100%;
    margin: 10px;
}

#about-img{
    width: auto;
    height: 100px;
    margin: 10px;
}

#gameplay-img {
    width: auto;
    height: 200px;
    margin: 10px;
}

#about-text{
    margin: auto 0;
}

button {
    background-color: #30b929; /* Lighter shade of navy blue */
    color: #e1f8e6; /* Light pink */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;

    font-size: 18px;
    font-weight: bold;
}

button:hover {
    background-color: #164820; /* Turquoise */
}

.item-tile {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.check-btn {
    order: 1;
    margin-top: auto;
}


/*Gallery Image Styles*/
.gall-img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.5);
}


.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sit next to each other */
.column {
    flex: 20%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    max-width: 80%;
}

.art-text{
    text-align: center;
}

#ggk-pic{
    width: 100%;
    object-fit: contain;
    height: auto;
    margin: 20px;
    border: 2px solid #30b929; /* Lighter shade of navy blue */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Footer Styles */
footer {
    background-color: #2c3e50; /* Navy blue */
    color: #e4f8e1; /* Light pink */
    padding: 20px;
    text-align: center;
}

footer a {
    color: #e1f8e4; /* Light pink */
}

#myLogo {
    max-width: 15px;
    height: auto;
    margin-top: 10px;
}

/*TODO: Need to reorder the */
@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
        flex-direction: column;
    }
    .row-display {
        flex-direction: column;
        gap: 10px;

        
    }
    .bkg-block {
        font-size: 1.2em;
        padding: 15px;
        order: -1;
    }
    .item-tile {
        padding: 5px;
        margin: 5px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .column {
        flex: 100%;
        max-width: 100%;
    }
    .thumb-img {
        width: 100px;
        margin: 0 auto;
    }
    button {
        padding: 8px 15px;
        font-size: 14px;
    }
    p {
        padding: 8px 15px;
        text-align: center;
        margin: 0 auto;
    }

    #about{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}



/*animation*/
.link-img {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  }
  
  .link-img.slide-in {
    opacity: 1;
    transform: translateX(0);
  }
  
  
.sour-gummy {
  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}