body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

.column div {
    clear: both;
    padding: 1000px;
    height: 200px;
    background: #eeeeee;
}

.footer {
    text-align: center;
    color: white;
    padding: 20px;
    background-color: black;
}

.content {
    max-width: 650px;
    margin: 0 auto;
    padding: 6%;
    text-align: center;
    color: white;
    font-size: 20px;

}

.content1,
.content2,
.content3,
.content4 {
    min-width: 50%;
    margin: 0;
    padding: 20%;
    color: white;
    font-size: larger;
    font-size: 22.5px;
}

.content2 {
    grid-column: 3;
    grid-row: 2;
    
}

.content3 {
    grid-column: 3;
}

.content4 {
    grid-column: 1;
    grid-row: 2;
}

.container {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    row-gap: 25px;
    grid-template-rows: 33% 33% 33%;
}

.background-image {
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    text-align: center;
}

.background-image1 {
    background-image: url('https://th.bing.com/th/id/R.c5fd677627d38d8bc9212615a93861bb?rik=iH%2b369b1MscayQ&riu=http%3a%2f%2fgetwallpapers.com%2fwallpaper%2ffull%2fc%2f9%2fa%2f252505.jpg&ehk=X%2bfu3dhK5vQ%2fvka6xU7hkfPRn2AfZQ0%2fBlIiHs%2b1dKI%3d&risl=&pid=ImgRaw&r=0');
    background-size: cover;
    background-attachment: fixed;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.shortcut-container {
    display: flex;
    justify-content: space-around;
    font-family: Arial, sans-serif;
}

.shortcut {
    text-align: center;
    margin: 10px;
    font-size: 20px;
}

.shortcut img {
    border-radius: 100%;
    height: 300px;
    width: 300px;
    object-fit: cover;
}

.shortcut-text {
    text-align: center;
    color: white;
}

.logo {
    position: fixed;
    left: 10px;
    top: 9px;
    padding: 0%;
    background-color: transparent;
}

.menu {
    position: fixed;
    right: 0;
    width: 100%;
    background: darkred;
    padding: 1%;
    margin: 0;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.menu li {
    display: inline-block;
    margin: 0 15px;
}

.menu a {
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    display: block;
    position: relative;
}

.menu a::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

.menu a:hover::before {
    transform: scale3d(1, 1, 1);
}

.menu-1 a::before {
    background: white;
    transform-origin: 100% 50%;
}

.menu-1 a:hover::before {
    transform-origin: 0 50%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: darkred;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: darkred;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.footer {
    text-align: center;
    color: white;
    padding: 20px;
    background-color: black;
}

.contact-form-container {

    margin: 40px auto;
    padding: 20px;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-size: 32px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; 
    padding: 10px;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.mobilenav{
    display: none;
} 
button {
    width: 100%;
    padding: 10px;
    background-color: darkred;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #cc0000;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.gallery-item {
    position: relative; 
    padding-bottom: 100%;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header1 {
    background-color: transparent;
    padding: 12px;
    color: white;
}




/*
@media (min-width: 769px) {

    .background-image{
        min-width: 100%;
    }

    .shortcut-container {
        flex-direction: column;
        align-items: center;
    }


}
    
*/

@media (max-width: 768px) {.shortcut-container {
        flex-direction: column;
        align-items: center;
    }
    .shortcut img {
        height: 200px;
        width: 200px;
        padding: 20px;
    }
    .contact-form-container {
        padding: 10px;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .background-image{
        max-width: auto;
    }
    .contact-form-container {
        padding: 5px;
        
    }
    .contact-form-container h2 {
        font-size: 24px;
    }
    .content {
        padding: 10%;
    }
    /*.menu-toggle {
        display: block;
        color: pink;
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        background-color: darkred;
        text-align: right;
    }
        */
    .menu ul {
        display: none;
        flex-direction: column;
        text-align: center;
    }
    .menu ul.active {
        display: flex;
    }
}
