/* Header Section */
header {
    height: 100vh; 
    width: 100%;
    position: relative;
}

/* Dome Section */
#dome-section h2 {
    font-family: 'Times New Roman', Times, serif;
    margin: 10px 0px 10px 0px;
}
#dome-section p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px;
}
#dome-section a {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px;
    text-decoration: none;
    color: black;
}
#dome-section a:hover {
    font-weight: bold;
}

/* Carpentry Section */
#carpentry-section h2 {
    font-family: 'Times New Roman', Times, serif;
    margin: 10px 0px 10px 0px;
}
#carpentry-section p {
    font-family: 'Cagliostro', sans-serif;
    margin: 0px;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Header Section */
    #header-picture {
        width: 100vw;
        height: 100vh;
    }
    header img {
        object-fit: cover;
        object-position: center;
        height: 100%; 
        width: 100vw;
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 20px);
        padding: 0px 10px 0px 10px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 30px; 
        color: white; 
    }
    h1 {
        color: white;
        font-family: 'Times New Roman', Times, serif;
        font-size: 30px;
        text-transform: uppercase;
        position: absolute;
        top: 45%;
        left: 20%;
    }

    /* Dome Section */
    #dome-section {
        width: 90%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }

    /* Dome Picture Section */
    #dome-picture {
        width: 100%;
        height: 400px;
        margin: 0;
        padding: 0;
        border: 0;
    }
    #dome-picture img {
        object-fit: cover;
        object-position: center;
        height: 400px; 
        width: 100%; 
        margin: 0; 
        padding: 0;
        visibility: hidden;
    }

    /* Carpentry Section */
    #carpentry-section {
        width: 90%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    #header-picture {
        width: 100%; 
        height: 100vh; 
    }
    header img {
        object-fit: cover;
        height: 100%; 
        width: 100%; 
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 60px);
        padding: 0px 30px 0px 30px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 40px; 
        color: white; 
    }
    h1 {
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
        position: absolute;
        top: 45%;
        left: 30%;
    }

    /* Dome Section */
    #dome-section {
        width: 60%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }

    /* Dome Picture Section */
    #dome-picture {
        width: 100%;
        height: 500px;
        margin: 0;
        padding: 0;
        border: 0;
    }
    #dome-picture img {
        object-fit: cover;
        object-position: center;
        height: 500px; 
        width: 100%; 
        margin: 0; 
        padding: 0;
        visibility: hidden;
    }

    /* Carpentry Section */
    #carpentry-section {
        width: 60%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Header Section */
    #header-picture {
        width: 100%;
        height: 100vh; 
    }
    header img {
        object-fit: cover;
        object-position: center;
        height: 100%; 
        width: 100%;
    }
    header nav {
        position: absolute;
        top: 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: calc(100% - 60px);
        padding: 0px 30px 0px 30px;
    }
    header h2 {
        cursor: pointer;
        font-family: "Merienda", cursive;
        font-size: 40px; 
        color: white; 
    }
    h1 {
        color: white;
        font-size: 50px; 
        font-family: 'Times New Roman', Times, serif;
        text-transform: uppercase;
        position: absolute;
        top: 45%; 
        left: 35%;
    }

    /* Dome Section */
    #dome-section {
        width: 50%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }

    /* Dome Picture Section */
    #dome-picture {
        width: 100%;
        height: 600px;
        margin: 0;
        padding: 0;
        border: 0;
    }
    #dome-picture img {
        object-fit: cover;
        object-position: center;
        height: 600px; 
        width: 100%; 
        margin: 0; 
        padding: 0;
        visibility: hidden;
    }

    /* Carpentry Section */
    #carpentry-section {
        width: 50%;
        margin: 2% auto 3% auto;
        visibility: hidden;
    }
}