/*
Theme Name: Dragnet 365 Child
Theme URI: https://dragnet365.com
Description: A child theme of Neve for Dragnet 365
Author: Manus
Author URI: https://manus.ai
Template: neve
Version: 1.0.0
*/

/* Import parent theme styles */
@import url('../neve/style.css');

/* Main CSS for Dragnet 365 Website */

/* Global Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #ff8000;
    --accent-color: #0099cc;
    --light-bg: #f5f8fa;
    --dark-bg: #001a33;
    --text-color: #333333;
    --light-text: #ffffff;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

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

/* Top Banner */
.top-banner {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.top-banner p {
    margin: 0;
    padding: 0;
}

.top-banner a {
    color: var(--light-text);
    font-weight: bold;
    text-decoration: underline;
}

/* Header */
header {
    background-color: var(--light-text);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.logo img {
    max-height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Sections */
.hero {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* AiBOSS Section */
.aiboss-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.aiboss-logo img {
    width: 150px;
    height: auto;
}

.aiboss-content {
    text-align: left;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 40px;
    align-items: center;
}

.column {
    flex: 1;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.service-image {
    margin-bottom: 15px;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.coming-soon-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Leadership Profile */
.leadership-profile {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 100%;
    border-radius: 8px;
}

.profile-content {
    flex: 1;
}

.profile-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.profile-content h4 {
    color: var(--accent-color);
    margin-top: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-bg);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.manus-credit a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Blockquote */
blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
    font-size: 1.1rem;
}

/* Learn More Links */
.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
}

/* About Page Specific */
.about-image {
    width: 100%;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column,
    .leadership-profile {
        flex-direction: column;
    }
    
    .profile-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .aiboss-section {
        flex-direction: column;
        text-align: center;
    }
    
    .aiboss-content {
        text-align: center;
    }
    
    .top-banner {
        position: relative;
    }
}
