/* =========================================================
   Sasha Digital Solutions - Main Stylesheet
   Palette: Midwest Green, Warm Cream, Rust CTA, Gold Accent
   ========================================================= */

/* ---------- Global Reset ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f1ec;
    color: #2f332f;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* ---------- Brand Variables ---------- */

:root {
    --green-dark: #1f3a2f;
    --green-medium: #2f5a46;
    --cream: #f4f1ec;
    --cream-light: #fffaf1;
    --rust: #b7410e;
    --rust-dark: #8f320b;
    --gold: #c9a227;
    --charcoal: #2f332f;
    --muted: #6b6f68;
    --white: #ffffff;
    --border: #ded7ca;
    --shadow: 0 12px 30px rgba(31, 58, 47, 0.14);
}

/* ---------- Utility ---------- */

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.eyebrow {
    color: var(--rust);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

/* ---------- Top Bar ---------- */

.top-bar {
    background: var(--charcoal);
    color: var(--cream-light);
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ---------- Header / Navigation ---------- */

.site-header {
    background: var(--green-dark);
    color: var(--white);
    border-bottom: 4px solid var(--rust);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.site-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
    background: var(--cream-light);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 6px;
}



.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.logo-text span {
    color: #d9ded6;
    font-size: 0.82rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.93rem;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
    background: var(--rust);
}

.nav-cta:hover {
    background: var(--rust-dark) !important;
}
/* ---------- Mobile Menu Button ---------- */

.mobile-menu-button {
    display: none;
    background: var(--rust);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu-button:hover {
    background: var(--rust-dark);
}

/* ---------- Dropdown Menu ---------- */

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: none !important;
    padding: 8px;
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    color: var(--charcoal);
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.dropdown a:hover {
    background: var(--cream);
    color: var(--rust);
}

.has-dropdown:hover .dropdown {
    display: block !important;
}

/* ---------- Hero ---------- */

.hero {
    background:
        radial-gradient(circle at top left, rgba(201, 162, 39, 0.18), transparent 34%),
        linear-gradient(135deg, var(--cream-light), var(--cream));
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    color: var(--green-dark);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.04em;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 720px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--rust);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--rust-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--cream-light);
    color: var(--green-dark);
}

.btn-light:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ---------- Hero Card ---------- */

.hero-card {
    background: var(--green-dark);
    color: var(--white);
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(201, 162, 39, 0.35);
}

.hero-card h2 {
    margin-bottom: 18px;
    color: var(--gold);
}

.hero-card ul {
    padding-left: 20px;
    margin-bottom: 22px;
}

.hero-card li {
    margin-bottom: 12px;
}

.hero-card-note {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--rust);
    padding: 14px;
    border-radius: 8px;
}

/* ---------- Section Heading ---------- */

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}

.section-heading h2 {
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--muted);
}

/* ---------- Services ---------- */

.services-section {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(47, 51, 47, 0.08);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(183, 65, 14, 0.35);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.service-card h3 {
    color: var(--green-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.service-card a {
    color: var(--rust);
    font-weight: 800;
    text-decoration: none;
}

.service-card a:hover {
    color: var(--rust-dark);
    text-decoration: underline;
}

/* ---------- Why Section ---------- */

.why-section {
    background: var(--cream);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.why-content h2 {
    color: var(--green-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    margin-bottom: 18px;
}

.why-content p {
    color: var(--muted);
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-list div {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    border-left: 5px solid var(--rust);
    box-shadow: 0 8px 20px rgba(47, 51, 47, 0.08);
}

.why-list strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.why-list span {
    color: var(--muted);
}

/* ---------- Cyber Section ---------- */

.cyber-section {
    background: var(--green-dark);
    color: var(--white);
}

.cyber-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cyber-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    margin-bottom: 14px;
}

.cyber-content p {
    color: #d9ded6;
    max-width: 720px;
}

/* ---------- Final CTA ---------- */

.final-cta {
    background:
        linear-gradient(rgba(183, 65, 14, 0.88), rgba(143, 50, 11, 0.9)),
        var(--rust);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.final-cta p {
    margin-bottom: 28px;
    font-size: 1.1rem;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--charcoal);
    color: var(--cream-light);
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--gold);
    margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
    color: #d5d5d0;
}

.site-footer ul {
    list-style: none;
}

.site-footer a {
    color: #d5d5d0;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    padding: 18px;
    color: #c8c8c2;
}

/* ---------- Responsive Design ---------- */

@media (max-width: 960px) {

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .main-nav ul {
        flex-wrap: wrap;
    }

    .hero-content,
    .why-content {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cyber-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

	
	    .mobile-menu-button {
        display: inline-block;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.nav-open {
        display: block;
    }

    .has-dropdown:hover .dropdown {
        display: none !important;
    }

    .has-dropdown.dropdown-open .dropdown {
        display: block !important;
    }
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav,
    .main-nav ul,
    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 12px;
        margin-left: 14px;
        width: calc(100% - 14px);
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 64px 0;
    }

    .section {
        padding: 58px 0;
    }
}
/* =========================================================
   SDS legal footer links
   ========================================================= */

.legal-footer-links {
    background: var(--green-dark);
    color: var(--cream-light);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding: 18px 20px 4px;
    text-align: center;
}

.legal-footer-links a {
    color: var(--cream-light);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.legal-footer-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

