/*
Theme Name: TalonIT Child
Theme URI: http://talonit.com.au
Author: Adam McLeod
Author URI: http://talonit.com.au
Description: Custom child theme for TalonIT hosting site.
Version: 1.1
Template: astra
*/

/* Variables */
:root {
    --maroon: #800000;
    --black: #000000;
    --white: #ffffff;
    --gray: #f0f0f0;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/* Header */
header {
    background: var(--maroon);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2em;
    color: var(--white);
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-wrap: wrap;
}

.hero-left {
    background: var(--maroon);
    color: var(--white);
    padding: 50px;
    flex: 1 1 50%;
}

.hero-left h1 {
    font-size: 3em;
}

.hero-left p {
    font-size: 1.2em;
}

.hero-right {
    background: url('/wp-content/themes/talonit-child/images/header.png') no-repeat center/cover; /* Replace with your image */
    flex: 1 1 50%;
    min-height: 400px;
}

/* Services Section */
.services {
    padding: 50px;
    background: var(--white);
}

.services h2 {
    text-align: center;
    color: var(--maroon);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--gray);
    padding: 20px;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 50px;
    background: var(--black);
    color: var(--white);
}

.testimonial {
    border-left: 5px solid var(--maroon);
    padding: 20px;
    margin: 20px 0;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

footer a {
    color: var(--maroon);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-split { flex-direction: column; }
    .hero-right { min-height: 300px; }
}
