/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: white;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding: 1em;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

* {
    box-sizing: border-box;
}

/* Navbar styles */
.navbar {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    background: white;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
    margin: -2rem 0 -1.5em 0;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Main content styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.content {
    max-width: 600px;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

h1 {
    font-family: 'Varela Round', sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.8rem;
    color: #ffffffb9;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #174ad6;
    margin: 1rem 0;
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
}

/* CTA button styles */
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background-color: #174ad6;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.contact-btn:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.contact-icon {
    display: none;
    font-size: 20px;
}

/* Footer styles */
footer {
    padding: 2rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Swoosh decoration */
.swoosh {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .content {
        padding: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 140px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 512px) {
    .contact-text {
        display: none;
    }

    .contact-icon {
        display: block;
    }

    .contact-btn {
        padding: 0.8rem;
        aspect-ratio: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 