/* Split Rock AI Brand Colors */
:root {
    --forest-green: #0D4F0F;      /* Primary forest green */
    --pine-green: #1B5E1F;         /* Pine green - secondary */
    --emerald-green: #228B22;      /* Emerald green - accent */
    --mint-green: #90EE90;         /* Light mint green - highlights */
    --light-cream: #F7F4F0;        /* Background */
    --accent-red: #ff6b6b;         /* Watermelon accent */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-cream);
    color: #212529;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-forest {
    color: var(--forest-green) !important;
}

.text-pine {
    color: var(--pine-green) !important;
}

.text-emerald {
    color: var(--emerald-green) !important;
}

.bg-light-cream {
    background-color: var(--light-cream) !important;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--light-cream) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--forest-green) !important;
}

.navbar-brand:hover {
    color: var(--pine-green) !important;
}

.nav-link {
    color: #212529 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--forest-green) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../images/splitrock-hero.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.5rem;
    font-weight: 300;
}

.hero-buttons .btn {
    text-shadow: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile fallback for parallax */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

/* Buttons */
.btn-forest {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: white;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-forest:hover {
    background-color: var(--pine-green);
    border-color: var(--pine-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 79, 15, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Siren Section */
#siren {
    background-color: white;
}

.feature-list .feature-item {
    padding: 0.5rem 0;
}

.feature-list .feature-item i {
    flex-shrink: 0;
}

.pricing-box {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f0ece7 100%);
    border-radius: 15px;
    border-left: 4px solid var(--forest-green);
}

.pricing-box ul li {
    font-size: 1rem;
}

.pricing-box .small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.siren-screenshot img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.siren-screenshot img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Who We Are Section */
.divider {
    width: 80px;
    height: 4px;
    background-color: var(--forest-green);
    border-radius: 2px;
}

.value-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-cream) 0%, #e8e4df 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
#contact {
    background-color: white;
}

/* Footer */
footer {
    background-color: #212529 !important;
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1 !important;
    color: var(--mint-green) !important;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Utility Classes */
.opacity-75 {
    opacity: 0.75;
}

/* Smooth transitions */
a, button, .btn {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .display-3 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}
