:root {
    /*Background Images*/
    --bg-images: url('assets/White Temp Background.jpg');
    /*Colours*/
    --bento-fill: #ffffff;
    --accent: #587965;
    --primary-text: #1a1a1a;
    --secondary-text: #6e6e6e;
    --bento-accent: #eceef0;
    /*Spacing (Maybe)*/
    /*Transitions (Maybe)*/
    /*Fonts*/
    --font-heading: 'Fraunces', 'Times New Roman', Georgia, serif;
    --font-body: 'Source Serif 4', 'Georgia', 'Cambria', serif;
}

.darkmode {
    /*Background Image*/
    --bg-images: url('assets/Black Temp Background.jpg');
    /*Colours*/
    --bento-fill: #2d2d2d;
    --accent: #587965;
    --primary-text: #eaeaea;
    --secondary-text: 	#b0b0b0;
    /*Spacing (Maybe)*/
    /*Transitions (Maybe)*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: var(--font-body);
    background-image: var(--bg-images);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-text)
}

h1, h2 {
    font-family: var(--font-heading);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

main > section {
    background-color: var(--bento-fill);
    border-radius: 50px;
    padding: 40px;
    min-height: 300px;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px
    }

    main > section {
        border-radius: 20px;
        min-height: auto;
    }

    .about {
        flex-direction: column;
        align-items: center;
    }
}

/* About Section */

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-content {
    flex: 1;
}

.about-text {
    padding-top: 10px;
}

.avatar {
    width: 150px;
    height: 150px;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Email Contact Section */

.contact_header {
    text-align: center;
    margin-bottom: 20px;
}

.contact {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.contact_arrow {
    font-size: 26px;
}

.contact_link {
    font-size: 20px;
}

.contact a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 600;
    padding: 4px 0;
}

.socials a:hover:visited {
    color: var(--accent);
}

/* Socials Section */

.socials ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
}

.social-icons {
    max-height: 50px;
}

.social-header {
    text-align: center;
    margin-bottom: 20px;
}

.socials a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 600;   
    display: flex;
    padding: 4px 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.socials a:hover:visited {
    color: var(--accent);
}

/* Website Under Construction Section */

.webpage_under_construction p {
    margin-bottom: 20px;
}

.construction_header {
    text-align: center;
    margin-bottom: 20px;
}

.construction_progress_container {
    width: 100%;
    background-color: var(--bento-accent);
    border-radius: 8px;
    height: 20px;
    overflow: hidden;
    margin: 20px 0;
    text-align: center;
}

.progress_bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    border-radius: 8px;
    transition: width 0.4s ease;
}

.construction_checkbox {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 80px;
    width: fit-content;
    margin: 0 auto;
}

.checklist_item {
    display: flex;
    align-items: center;
    gap: 8px;
}