/* Font Imports */
@font-face {
    font-family: 'Photograph Signature';
    src: url(assets/fonts/photograph_signature-webfont.woff2) format('woff2'),
         url(assets/fonts/photograph_signature-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Futura", sans-serif;
    src: url(assets/fonts/futura-condensedlight-webfont.woff2) format('woff2'),
         url(assets/fonts/futura-condensedlight-webfont.woff) format('woff');
    font-style: normal;
    font-weight: 300;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
html, body {
    font-family: "Futura", sans-serif;
    line-height: 1.5;
}




/* Main Content Style */
.container{
    display: flex;
    margin-top: 150px;
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
}

.main-text-container{
    display: flex;
    flex-direction: column;
    max-width:60%;
    height: 50vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-text-container h1{
    background: linear-gradient(180deg, #33E28C 19%, #4F94D9 82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: bold;
    font-size: 57px;
    line-height: 115%;
    margin-bottom: 20px;
}

.main-text-container h2{
    font-weight: 900;
    color:#4E544D;
    font-size: 25px;
}
.main-text-container p{
    color:#4E544D;
    font-size: 16px;
    font-weight: 200;
    text-align: justify;
    margin-bottom: 150px;
}

.main-map-container {
    position: relative;
    width: 100%; /* Full width of the parent container */
    padding-top: 30%; /* Maintain a 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Drop shadow for style */
}

.main-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Stretch to fill the container */
    height: 100%; /* Stretch to fill the container */
    border: none; /* Remove default iframe border */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-map-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .main-map-container {
        height: 400px;
    }
}

  @media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%; /* One item per row on small screens */
        max-width: 100%;
    }
    .main-map-container {
        height: 400px;
    }
}