/* Header section */
header {
    width: 100%;
    height: 70vh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
header picture {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
header img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
}
header div {
    z-index: 1;
    width: 100%;
    height: 70vh;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Contact Section */
#contact-section h2 {
    margin: 10px; 
}
.contact-detail {
    display: flex;
    align-items: center;
}
.contact-detail a {
    text-decoration: none;
    color: black;
}
.contact-icon {
    color: #A3907C;
    margin: 10px;
}

/* Enquiry Section */
#enquiry-section h2 {
    margin: 10px; 
}
#send-layout {
    display: flex;
    flex-direction: row;
}
#send {
    text-transform: none;
    margin: 10px;
    border-radius: 20px;
    font-size: 18px;
    width: 100px;
}
#enquiry-section p {
    font-family: 'Cagliostro', sans-serif; 
    margin: 5px;
}
#enquiry-section a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}
#progressbar {
    margin: 10px 0px 10px 0px;
    color: #A3907C;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    /* Header Section */
    header h2 {
        font-size: 40px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 40%;
        left: 25%;
        color: white;
        z-index: 2;
    }

    main {
        width: 100%;
        z-index: 1;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }
    #contact-section {
        padding: 20px; 
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray; 
        margin: 10px 10px 3% 10px;
        width: calc(100% - 20px);
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
    #enquiry-section {
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray; 
        padding: 20px;  
        width: calc(100% - 20px); 
        margin: 10px 10px 3% 10px;
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Header Section */
    header h2 {
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 40%;
        left: 35%;
        color: white;
        z-index: 2;
    }

    main {
        width: 100%;
        z-index: 1;
        display: flex;
        flex-direction: row;
        overflow-x: hidden;
    }
    #contact-section {
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray;
        padding: 20px;  
        margin: 10px 10px 3% 10px;
        width: calc(40% - 20px);
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
    #enquiry-section {
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray; 
        padding: 20px; 
        width: calc(60% - 20px);
        margin: 10px 10px 3% 10px;
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
}

@media only screen and (min-width: 1025px) {
    /* Header Section */
    header h2 {
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        position: absolute;
        top: 40%;
        left: 40%;
        color: white;
        z-index: 2;
    }

    main {
        width: 100%;
        z-index: 1;
        display: flex;
        flex-direction: row;
        overflow-x: hidden;
    }
    #contact-section {
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray;  
        padding: 20px; 
        margin: 10px 10px 3% 10px; 
        width: calc(40% - 20px);
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
    #enquiry-section {
        box-shadow: 5px 5px 5px gray, -5px -5px 5px gray; 
        padding: 20px; 
        width: calc(60% - 20px); 
        margin: 10px 10px 3% 10px;
        font-family: "Lusitana", serif;
        visibility: hidden;
    }
}