/* InternetOmega site styles */
:root {
    color-scheme: light;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #121212;
    background: #f8fbff;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

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

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    background: transparent;
    color: inherit;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-light .navbar-nav .nav-link {
    color: #3b2841;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #5c3a6e;
}

.navbar-light .navbar-toggler-icon {
    filter: none;
}

.logo {
    width: 4.5rem;
    height: auto;
    margin-bottom: 0.75rem;
    object-fit: contain;
}

.brand h1 {
    margin: 0;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.brand p {
    margin: 0.5rem 0 0;
    max-width: 42rem;
    opacity: 0.8;
}

.logo {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: #e2e8f0;
    font-weight: 600;
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(180deg, #e2ebff 0%, #f8fbff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1rem;
}

.hero p {
    max-width: 40rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

.hero-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.section {
    padding: 4rem 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
}

h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.project-card,
.highlight,
.contact-details,
.contact-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
}

.card h3,
.project-card h3,
.highlight h3,
.contact-details h3 {
    margin-top: 0;
}

.card p,
.project-card p,
.highlight p,
.contact-details p {
    margin: 0.75rem 0 0;
    color: #475569;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.about-highlights {
    display: grid;
    gap: 1rem;
}

.highlight {
    min-height: 10rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    background: #f8fafc;
    color: #0f172a;
}

.contact-form textarea {
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: #1d4ed8;
}

.alert {
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-content,
    .split-grid,
    .grid-3,
    .contact-grid,
    .header-inner {
        grid-template-columns: 1fr;
    }

    nav {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .contact-form,
    .contact-details {
        padding: 1.5rem;
    }
}
