* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 13vh;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #e1f5fe 100%);
    min-height: 100vh;
}

#hero_title {
    text-align: center;
    font-size: 3rem;
    color: #0277bd;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(90deg, transparent, rgba(3, 169, 244, 0.1), transparent);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    transition: top 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #0288d1 0%, #03a9f4 100%);
    box-shadow: 0 4px 12px rgba(2, 136, 209, 0.3);
    width: 100%;
    height: 11vh;
    z-index: 1000;
}

.header img {
    width: 120px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#navbar {
    background: linear-gradient(135deg, #01579b 0%, #0277bd 100%);
    position: fixed;
    top: 11vh;
    width: 100%;
    height: 50px;
    z-index: 999;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(1, 87, 155, 0.3);
}


#navbar a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1 1 auto;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    position: relative;
}

#navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

#navbar a:hover {
    background: linear-gradient(135deg, #4fc3f7 0%, #81d4fa 100%);
    color: #01579b;
}

#navbar a:hover::after {
    width: 80%;
}

.info-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(2, 136, 209, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(2, 136, 209, 0.25);
}

.info-section h2 {
    color: #0277bd;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.info-section p {
    color: #455a64;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-image {
    width: 50%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 4px solid #03a9f4;
}

.info-image:hover {
    transform: scale(1.05);
}

.info-image {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.close-modal:hover {
    color: #03a9f4;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.5); }
    to { transform: translate(-50%, -50%) scale(1); }
}

#map {
    margin: 2rem auto;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.2);
    max-width: 1000px;
}

#footer {
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #01579b 0%, #0277bd 100%);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    min-height: 27vh;
    line-height: 2;
    box-shadow: 0 -4px 12px rgba(1, 87, 155, 0.3);
}

.social-icons {
    justify-content: center;
    display: flex;
    gap: 20px;
    margin: 1rem 0;
}

.social-icon {
    color: #ffffff;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-icon-contact {
    color: #0277bd;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover .social-icon {
    color: #0277bd;
}

/*Loading screen for maps*/
.loader {
  display: block;
  align-items: center;
}

.bar {
  display: inline-block;
  width: 10px;
  height:60px;
  background-color: black;
  border-radius: 10px;
  animation: scale-up4 1s linear infinite;
}

.bar:nth-child(2) {
  height: 35px;
  margin: 0 5px;
  animation-delay: .25s;
}

.bar:nth-child(3) {
  animation-delay: .5s;
}

@keyframes scale-up4 {
  20% {
    background-color: #0274bb;
    transform: scaleY(1.5);
  }

  40% {
    transform: scaleY(1);
  }
}
/*End loading screen*/


@media (max-width: 450px) {
    body {
        padding-top: 15vh;
    }

    .header {
        font-size: 1.5rem;
        height: 100px;
        padding: 0 10px;
    }

    .header img {
        width: 50px;
        height: 50px;
    }

    #navbar {
        top: 100px;
        height: 50px;
    }

    #navbar a {
        padding: 15px 15px;
        font-size: 0.9rem;
        min-width: 80px;
    }

    #hero_title {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .info-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .info-section h2 {
        font-size: 1.8rem;
    }

    .info-section p {
        font-size: 1rem;
    }

    .info-section textarea {
        width: 100%;
    }

    .info-image {
        width: 90%;
    }

    #map {
        height: 40vh;
        margin: 1rem;
    }

    #footer {
        font-size: 0.9rem;
        padding: 1.5rem 1rem;
    }
}

