/*
  Basic CSS Styles for AICodeLink.com
*/

/*
  Copyright (c) 2025 Bay IT Outsourcing
  All rights reserved.
  Created: 2026-02-04
*/

:root {
    --primary: #0a2540;
    --accent: #00d4ff;
    --text: #425466;
    --light: #f6f9fc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text);
    line-height: 1.6;
    background-color: white;
}

header {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Scaling the SVG logo */
.logo {
    height: 50px; /* Adjust this height to scale your logo */
    width: auto;
    display: block;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3rem 1rem;
    background: var(--light);
    gap: 20px;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    border-top: 4px solid var(--accent);
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.85rem;
    color: #adbbca;
    background: #fff;
}
