@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --background-color: #0a0a29;
    --text-color: #f5f5f5;
    --accent-color: #00e5ff;
    --subtitle-color: #8b8b8b;
    --cta-color: #0080ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--background-color);
    padding: 1rem 0;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    max-width: 400px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
    min-height: 80vh;
    width: 100%;
    overflow: hidden;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #00ffff, #0080ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    max-width: 100%;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--subtitle-color);
    margin-bottom: 2.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

button {
    font-family: 'Roboto', sans-serif;
    background-color: var(--cta-color);
    color: var(--text-color);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

button:hover {
    background-color: #0066cc;
}

.fa-solid {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.who-we-are, .publishers, .advertisers {
    display: flex;
    padding: 5rem 5%;
    justify-content: center;
}

.who-we-are, .publishers {
    background-color: #f5f5f5;
    color: #333333;
}

.advertisers {
    background-color: var(--background-color);
    color: var(--text-color);
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.content {
    flex: 1;
    padding-right: 2rem;
}

h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    width: 3rem;
    height: 4px;
    background: linear-gradient(to right, #00ffff, #0080ff);
}

.intro {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon {
    width: 60px;
    height: auto;
    margin: 1rem;
    flex-shrink: 0;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #6f6f6f;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-section {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 41, 0.9);
    z-index: -1;
}

.cta-section .content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #00ffff, #0080ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.cta-section .subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
    text-align: center;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #0080ff;
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0066cc;
}

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    font-family: 'Roboto', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    flex: 1;
    padding-right: 50px;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    color: #333333;
}

.contact-form h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #00ffff, #0080ff);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    align-self: flex-start;
    padding: 15px 30px;
    background-color: #0080ff;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #0066cc;
}

.map-container {
    flex: 1;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.footer {
    background-color: #16161c;
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #999999;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #ffffff;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.footer-offices h3,
.footer-services h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-offices p,
.footer-services li {
    color: #999999;
    margin-bottom: 0.5rem;
}

.footer-offices i {
    margin-right: 0.5rem;
    color: #999999;
}

.footer-services ul {
    list-style-type: none;
    padding: 0;
}

.footer-services a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #ffffff;
}

.copyright {
    background-color: #111115;
    color: #999999;
    padding: 1rem 0;
}

.copyright-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: 55vh;
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
    }

    nav.active {
        display: flex;
    }

    nav::before {
        content: 'Menu';
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--background-color);
        position: absolute;
        top: 20px;
        left: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    nav ul li a {
        color: var(--background-color);
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hamburger.active span {
        background-color: var(--background-color);
    }

    .who-we-are, .publishers, .advertisers {
        padding: 3rem 1rem;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 2rem;
        text-align: center;
    }
    h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .intro {
        font-size: 1.1rem;
        text-align: center;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .feature p {
        font-size: 1rem;
    }

    .cta-section {
        height: 70vh;
    }

    .cta-section .title {
        font-size: 3rem;
    }

    .cta-section .subtitle {
        font-size: 1.2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .map-container {
        height: 400px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-offices,
    .footer-services {
        margin-bottom: 2rem;
    }

    .footer-logo {
        max-width: 100%;
    }

    .logo-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .logo-image {
        max-width: 260px;
    }

    .cta-section .title {
        font-size: 2.5rem;
    }

    .cta-section .subtitle {
        font-size: 1rem;
    }

    .contact-form h2 {
        font-size: 2rem;
    }
    .contact-form button {
        align-self: flex-start;
        padding: 8px 20px;
        background-color: #0080ff;
        color: white;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 1rem;
        font-weight: 400;
    }
}

