/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
}

a {
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Utility Styles */

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: 600;
}

/* use on container to place gap between children */
.gap {
    gap: 20px;
}

.gap-more {
    gap: 36px;
}

.gap-large {
    gap: 50px;
}

.emphasis {
    color: #dd3078;
    font-weight: bold;
}

/* Header Styles */
.header {
    color: black;
    background-color: #DD3078;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header a:link,
.header a:visited {
    color: white;
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu-item {
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #fff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Section Common Styles */

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 70px 0;
}

.section>div:first-child {
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin-left: 20px;
    margin-right: 20px;
}

.section .cell {
    flex: 1;
}

.section a {
    color: white;
    background-color: #dd3078;
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 22px;
    font-weight: 600;
    width: 386px;
    display: block;
    text-align: center;
}

.section a:hover {
    background-color: purple;
    cursor: pointer;
}

.section .medium {
    font-size: 23px;
    line-height: 28px;
}

.section .big {
    font-size: 40px;
    font-weight: 600;
}

.section .wrap {
    flex-wrap: wrap;
}

.section .min302 {
    min-width: 302px;
}

.section .min220 {
    min-width: 220px;
}

/* Section Individual Styles */

.section-1 {
    font-size: 30px;
    font-weight: 300;
    height: 100vh;
    background-image: url("resources/sky_night-75.jpg");
}

.section-1>div:first-child {
    max-width: 600px;
    flex-grow: 0;
}

.section-1 .big {
    font-size: 80px;
    font-weight: 600;
}

.section-2 {}

.section-2>div:first-child {
    display: flex;
    flex-direction: row;
    gap: 25px;
    max-width: 1050px;
    flex-wrap: wrap;
    justify-content: center;
}

.section-2 div.gap-xl {
    gap: 68px;
}

.section-2 img {
    max-width: 302px;
}

.section-2 .pdfs div {
    max-width: 302px;
}

.section-2 .desc-space {
    margin-top: 5px;
    margin-bottom: 30px;
}

.section-3 {}

.section-3>div:first-child {
    display: flex;
    max-width: 990px;
    align-items: center;
    justify-content: center;
}

.section-3 .space-top-body {
    margin-top: 20px;
}

.section-3 .logo img {
    max-width: 134px;
    max-height: 42px;
}

.section-3 .logo-box {
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.section-4 {}

.section-4>div:first-child {
    max-width: 990px;
    display: flex;
}

.section-4 .dropcap::first-letter {
    float: left;
    font-size: 3.5em;
    line-height: 0.8;
    padding-right: 0.1em;
    padding-top: 0.05em;
    font-weight: bold;
}

.section-5 {}

.section-5>div:first-child {
    max-width: 700px;
    display: flex;
}

.section-5 div {
    display: flex;

}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section {
        min-height: auto;
        padding: 4rem 2rem;
    }
}