@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueLTPro-Lt.woff2') format('woff2');
    font-weight: 300;
    font-style: light;
    font-display: swap;
    ascent-override: 70%;
    descent-override: 0%;
    line-gap-override: 50%;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueLTPro-Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
    ascent-override: 70%;
    descent-override: 0%;
    line-gap-override: 50%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #000717;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-contact {
    color: #CA7907 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services Section */
.services {
    border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.services .container {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-size: 24px;
    padding-left: 20px;
    border-left: 1px solid;
    font-weight: 400;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
}

.service-item p {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: self-end;
}

.about-logo {
    width: 100%;
    display: flex;
    align-items: center;
}

.about-text {
    font-size: 14px;
    font-weight: 300;
    color: #FFF;
}

/* Contact Section */
.contact {
    padding: 20px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 260px 520px;
    justify-content: space-between;
}

.contact-item a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.contact-item a:hover {
    color: #CA7907;
}

.contact-info,
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-section h3,
.contact-info h3{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.1px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta {
    display: flex;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #CA7907;
    color: #CA7907;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-cta svg path {
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #CA7907;
    color: #000717;
}

.btn-cta:hover svg path {
    fill: #000717 !important;
}

/* Footer */
footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
    display: flex;
}

.social-links a:hover {
    color: #CA7907;
}

.footer-info {
    text-align: right;
    color: #FFF;
    font-size: 10px;
}

@media (max-width: 1280px) {
    .container,
    .services .container {
        padding-inline: 3%;
    }
}

@media (max-width: 768px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
    }

    .footer-info {
        text-align: left;
    }

    .contact-info {
        order: 2;
    }

    .contact-grid {
        gap: 40px;
    }
}
