/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
}

.nav-link-back {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.nav-link-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(-5px);
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    max-width: 850px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.about-title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: slideInDown 0.8s ease-out;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-text p:nth-child(1) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.3s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.4s;
}

.about-text p:nth-child(4) {
    animation-delay: 0.5s;
}

.about-text p:nth-child(5) {
    animation-delay: 0.6s;
}

.about-text p:nth-child(6) {
    animation-delay: 0.7s;
}

.intro-text {
    font-size: 1.4rem !important;
    color: #ffffff !important;
    font-weight: 400 !important;
}

.closing-text {
    font-size: 1.3rem !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    text-align: center;
    margin-top: 2.5rem !important;
}

.about-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.btn-primary {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.35);
    background: #f8f8f8;
}

.btn-secondary {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(188, 24, 136, 0.5);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(188, 24, 136, 0.7);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.contact-form-container {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    padding: 1.3rem 3rem;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
    align-self: center;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.35);
    background: #f8f8f8;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: #000000;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #ffffff;
    color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav {
        padding: 1.5rem;
    }

    .nav-link-back {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .about-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .about-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }

    .about-text p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .intro-text {
        font-size: 1.2rem !important;
    }

    .closing-text {
        font-size: 1.15rem !important;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.1rem !important;
    }

    .closing-text {
        font-size: 1.05rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }
}
