/* RE-MARINE Digital Business Card - Styles */

/* Color Variables - Matching new logo */
:root {
    --primary-charcoal: #3D3E3D;
    --accent-cyan: #3EACE9;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-dark: #3D3E3D;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Bold industrial sans-serif to match logo */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-charcoal);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    color: var(--primary-charcoal);
}

/* Hero Section */
.hero {
    background-color: var(--primary-charcoal);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-cyan);
    color: var(--white);
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Oswald', sans-serif;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 80px 20px;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mana-ecosystem {
    color: var(--accent-cyan);
    font-weight: 600;
    border-left: 4px solid var(--accent-cyan);
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-cyan);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: var(--primary-charcoal);
    color: var(--white);
    padding: 80px 20px;
}

.contact h2 {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-link:hover {
    color: var(--accent-cyan);
}

.contact-text {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
.footer {
    background-color: #2a2b2a;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid var(--accent-cyan);
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.mana-tagline {
    font-weight: 700;
    color: var(--accent-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo {
        max-width: 300px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

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

    h2 {
        font-size: 1.7rem;
    }

    .about,
    .services,
    .contact {
        padding: 50px 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-link {
        font-size: 1.1rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
}