/* Red Fish Strategies - Texas Political Consulting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --redfish-red: #8B2E2E;
    --redfish-red-dark: #6B2222;
    --redfish-red-light: #A63D3D;
    --off-white: #F8F6F3;
    --text-dark: #2C2C2C;
    --text-muted: #5A5A5A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--off-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--redfish-red);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--redfish-red);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: var(--off-white);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slideshow .slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44,44,44,0.5) 0%, rgba(44,44,44,0.75) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 2rem 0;
}

.hero-content .container {
    background: rgba(248, 246, 243, 0.92);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--redfish-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--redfish-red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--redfish-red-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--redfish-red);
    border: 2px solid var(--redfish-red);
}

.btn-secondary:hover {
    background: var(--redfish-red);
    color: #fff;
}

/* Services */
.services {
    padding: 4rem 0;
}

.services h2 {
    font-size: 2rem;
    color: var(--redfish-red);
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--redfish-red);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--redfish-red);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-section .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-section .btn-secondary:hover {
    background: #fff;
    color: var(--redfish-red);
}

/* Page Hero */
.page-hero {
    background: var(--off-white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    color: var(--redfish-red);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* About / Contact Content */
.white-section {
    padding: 4rem 0;
}

.about-layout,
.contact-layout {
    max-width: 700px;
    margin: 0 auto;
}

.about-text h2,
.contact-info h2 {
    font-size: 1.5rem;
    color: var(--redfish-red);
    margin: 2rem 0 1rem;
}

.about-text h2:first-child,
.contact-info h2:first-child {
    margin-top: 0;
}

.about-text p,
.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-email {
    margin-top: 1.5rem;
}

.contact-email a {
    color: var(--redfish-red);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.95;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--off-white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        overflow: hidden;
        transition: width 0.3s;
        z-index: 99;
        box-shadow: none;
    }

    .header-nav.mobile-menu-open {
        width: 100%;
        max-width: 320px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    }

    .header-nav .nav-link {
        font-size: 1.25rem;
        padding: 0 2rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content .container {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .header-logo img {
        height: 55px;
    }
}
