* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #003f58;
    background: linear-gradient(90deg, rgb(0, 52, 73) 0%, rgba(87, 143, 199, 1) 30%, rgb(0, 52, 73) 100%);
    color: white;
    line-height: 1.5;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: #003f58;
    background: linear-gradient(90deg, rgb(0, 52, 73) 0%, rgba(87, 143, 199, 1) 30%, rgb(0, 52, 73) 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header div {
    width: min(1100px, 90%);
    margin: 0 auto;
}

header h1 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* SECTION - MAIN */
section.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

section.main {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: url("../images/landingImage.jpg") center/cover no-repeat;
    position: relative;
}

section.main div {
    position: relative;
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 8px;
}

section.main div p {
    font-size: clamp(16px, 2vw, 22px);
}

/* SECTION - MAP */
.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* SECTION - SERVICES */
.services {
    padding: 60px 20px;
    background: #003f58;
    background: linear-gradient(90deg, rgb(0, 52, 73) 0%, rgb(60, 99, 138) 50%, rgb(0, 52, 73) 100%);
    text-align: center;
}

.services h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 40px;
    font-weight: 600;
}

.services .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services .card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 25px 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.services .card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.services .card p {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
}

/* FOOTER */
footer {
    background-color: #2b2b2b;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.85;
}

footer a {
    color: #4da3ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.link-native {
    color: unset;
    text-decoration: unset;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .map iframe {
        height: 300px;
    }

    .services .cards {
        flex-direction: column;
        align-items: center;
    }

    .services .card {
        width: 100%;
        max-width: 400px;
    }
}