/*
Theme Name: Seeko Tech
Theme URI: https://seeko-tech.mgx.world
Author: Seeko Tech
Description: Custom corporate theme for Seeko Tech.
Version: 1.0.0
Text Domain: seeko-tech
*/

:root {
    --color-primary: #A51C30;
    --color-primary-hover: #8B1826;
    --color-text: #4A4A4A;
    --color-bg-dark: #1a202c;
    --color-bg-light: #F9FAFB;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: scale(1.05);
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Header & Nav Improvements */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 40px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.main-navigation a {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

/* Card Components */
.category-card:hover,
.vertical-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Hero Typography */
.hero-section h1 {
    font-weight: 800;
    letter-spacing: -1px;
}

/* Section Titles */
.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title p {
    max-width: 700px;
    margin: 1rem auto 0;
    opacity: 0.8;
}

/* Footer */
.site-footer h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.5rem;
}

.site-footer a:hover {
    color: #fff;
}