/* Atlanteo Website Styles */
/* Colors extracted from Readymag original */
:root {
    --color-primary: #69c0ac;      /* Teal accent - rgba(105, 192, 172, 1) */
    --color-secondary: #1a2a56;    /* Dark blue text - rgba(26, 42, 86, 1) */
    --color-background: #dad7d0;   /* Warm gray background */
    --color-white: #ffffff;
    --color-dark: #222222;
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-secondary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

/* Header */
.header {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.logo {
    width: 206px;
    height: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 20px 0 80px;
    min-height: 500px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 340px;
    left: 0;
    right: 0;
    height: 528px;
    z-index: 5;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.tagline {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    margin-bottom: 0;
    line-height: 39px;
}

.hero h1 {
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    color: var(--color-secondary);
    letter-spacing: -0.3px;
    max-width: 741px;
    margin-bottom: 100px;
}

.hero h1 .underline {
    text-decoration: underline;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    opacity: 0.40;
}

.deco-circle-right {
    width: 613px;
    right: -100px;
    top: -106px;
}

.deco-circle-left {
    width: 440px;
    left: -46px;
    top: 158px;
}

/* Structured lines background */
.hero-lines {
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
    height: 585px;
    z-index: 4;
    pointer-events: none;
}

.hero-lines img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Section Base */
.section {
    position: relative;
    padding: 0;
    margin-top: -40px;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.section-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.9px;
    margin-bottom: 12px;
    line-height: 57px;
}

.section-text {
    font-size: 18px;
    line-height: 26px;
    color: var(--color-secondary);
    letter-spacing: -0.24px;
    max-width: 727px;
}

.section-text strong {
    font-weight: 600;
}

/* What We Do Section */
.section-what {
    margin-top: 420px;
    min-height: 200px;
}

/* About Section */
.section-about {
    margin-top: 0;
    min-height: 200px;
    overflow: visible;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.about-deco-circle {
    position: absolute;
    width: 613px;
    left: -247px;
    top: -50px;
    opacity: 0.40;
}

.press-link {
    margin-top: 20px;
}

.press-link a {
    font-size: 12px;
    color: var(--color-dark);
    text-decoration: underline;
}

/* Team Section */
.section-team {
    position: relative;
    padding: 60px 0 80px;
    margin-top: 20px;
    min-height: 500px;
    z-index: 10;
}

.team-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.team-deco-circle {
    position: absolute;
    width: 746px;
    right: -200px;
    top: 40px;
    opacity: 0.40;
}

.team-deco-circle-left {
    position: absolute;
    width: 613px;
    left: -350px;
    top: -100px;
    opacity: 0.40;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

.team-member {
    text-align: left;
}

.team-photo {
    width: 156px;
    height: 156px;
    border-radius: 0;
    margin-bottom: 25px;
    object-fit: cover;
}

.team-role {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    line-height: 20px;
    margin-bottom: 0;
}

.team-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-secondary);
    letter-spacing: -0.3px;
    line-height: 20px;
    margin-bottom: 8px;
}

.team-bio {
    font-size: 12px;
    line-height: 20px;
    color: var(--color-secondary);
    letter-spacing: -0.3px;
}

.team-bio strong {
    font-weight: 600;
}

/* CTA Section */
.section-cta {
    position: relative;
    padding: 60px 0;
    margin-top: 10px;
    min-height: 300px;
    overflow: visible;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.cta-deco-circle {
    position: absolute;
    width: 600px;
    right: -200px;
    top: -50px;
    opacity: 0.40;
}

.cta-tagline {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: -0.9px;
    margin-bottom: 0;
    line-height: 31px;
}

.cta-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-secondary);
    letter-spacing: -0.24px;
    line-height: 36px;
    max-width: 500px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 992px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 16px;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    opacity: 0.85;
    color: var(--color-white);
}

/* Footer */
.footer {
    position: relative;
    padding: 50px 0 60px;
    color: var(--color-white);
    margin-top: 0;
    z-index: 10;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .coming-text {
    font-size: 24px;
    line-height: 32px;
    color: var(--color-white);
    letter-spacing: -0.24px;
    max-width: 600px;
    margin-bottom: 180px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 155px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer h4 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.24px;
}

.footer p {
    font-size: 12px;
    line-height: 26px;
    color: var(--color-white);
    letter-spacing: -0.24px;
    margin-bottom: 0;
}

.footer-company {
    margin-top: 10px;
}

.footer a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-badge {
    position: absolute;
    right: 60px;
    bottom: 30px;
    z-index: 2;
}

.footer-badge img {
    width: 157px;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }

    .hero h1,
    .tagline,
    .section-title,
    .cta-tagline,
    .cta-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .team-member {
        text-align: center;
    }

    .team-photo {
        margin: 0 auto 20px;
    }

    .footer-main {
        align-items: center;
        text-align: center;
    }

    .footer .coming-text {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-contact {
        align-items: center;
    }

    .deco-circle,
    .team-deco-circle,
    .team-deco-circle-left {
        display: none;
    }

    .footer-badge {
        position: static;
        margin-top: 30px;
    }

    .footer-badge img {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .section-content {
        padding: 30px 0;
    }

    .hero {
        padding: 20px 0 40px;
        min-height: auto;
    }

    .hero h1,
    .tagline,
    .section-title,
    .cta-tagline,
    .cta-title {
        font-size: 20px;
    }

    .logo {
        width: 150px;
    }
}
