/* Font - Franklin Gothic ATF */
@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Med.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('../assets/fonts/Franklin_Gothic_ATF_Hvy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* CSS Variables */
:root {
    --coral: #E15A4A;
    --coral-dark: #D14A3A;
    --text-dark: #2D2D2D;
    --text-gray: #666666;
    --bg-light: #FAFAFA;
    --bg-footer: #F5F5F5;
    --white: #FFFFFF;
    --font-family: 'Franklin Gothic ATF', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 20px 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--coral);
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* About Hero */
.about-hero {
    padding: 160px 40px 60px;
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 700px;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-content .highlight {
    color: var(--coral);
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Who We Are */
.who-we-are {
    padding: 60px 40px 100px;
    display: flex;
    justify-content: center;
}

.who-we-are-content {
    max-width: 700px;
    width: 100%;
}

.who-we-are-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-member-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-member-title {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.team-member-email {
    font-size: 16px;
    color: var(--coral);
    font-weight: 500;
}

.team-member-email:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-footer);
    padding: 50px 40px;
    border-top: 1px solid #e0e0e0;
}

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

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-brand address a {
    color: var(--coral);
}

.footer-brand address a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-right {
        gap: 18px;
    }

    .nav-link {
        font-size: 15px;
    }

    .logo img {
        height: 45px;
    }

    .about-hero {
        padding: 120px 20px 40px;
    }

    .about-content h1 {
        font-size: 30px;
    }

    .about-description {
        font-size: 15px;
    }

    .who-we-are {
        padding: 40px 20px 60px;
    }

    .who-we-are-content h2 {
        font-size: 26px;
    }

    .team-member-info h3 {
        font-size: 19px;
    }

    .footer {
        padding: 40px 20px;
    }
}
