/* ===========================================
   LAKE CHARLES BIZ HIVE - HOME PAGE STYLES
   Design System: Deep Lakeside Blue + Sunset Orange
   Mobile-First Responsive CSS
   =========================================== */

/* --- CSS VARIABLES / DESIGN TOKENS --- */
:root {
    --primary: #003366;
    /* Deep Lakeside Blue */
    --primary-dark: #002244;
    --accent: #FF9900;
    /* Sunset Orange */
    --accent-hover: #e68a00;
    --bg-light: #f0f0f0;
    --white: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --border-color: #dddddd;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--primary);
    font-weight: 400;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    font-weight: 400;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    /*background: var(--primary);*/
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
    border: 3px solid var(--accent);
    border-color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

/* --- HEADER / NAVBAR --- */
.header {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: none;
    gap: 15px;
    align-items: center;
}

.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 55vh;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.85)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    padding: 60px 20px;
}

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

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
    color: #f0f0f0;
}

/* Hero CTA Button - Blue with Orange Border */
.hero-content .btn-primary {
    background: var(--primary);
    border: 1px dashed #dddddd;
}

.hero-content .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--accent);
}

/* --- SEARCH SECTION --- */
.search-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    overflow: hidden;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.search-form input,
.search-form select {
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.search-form input:focus,
.search-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.search-form .btn {
    width: 100%;
    padding: 15px 24px;
}

/* --- SECTION STYLING --- */
.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* --- CATEGORY GRID --- */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* --- SPOTLIGHT SECTION --- */
.spotlight-section {
    background: var(--bg-light);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.biz-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: var(--transition);
}

.biz-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.biz-img {
    height: 180px;
    background-color: var(--bg-light);
    background-size: cover;
    background-position: center;
}

.biz-img-default {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.biz-info {
    padding: 20px;
}

.biz-info h3 {
    font-size: 1.15rem;
    margin: 10px 0 8px;
    color: var(--text-dark);
}

.biz-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.biz-phone {
    color: var(--primary) !important;
    font-weight: 500;
}

.biz-phone i {
    margin-right: 5px;
}

.rating {
    color: #f1c40f;
    font-size: 0.85rem;
}

.rating i {
    margin-right: 3px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot:hover {
    background: var(--text-muted);
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* --- ARTICLES SECTION --- */
.articles-section {
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.article-card:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.article-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-dark);
}

.article-title a:hover {
    color: var(--primary);
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 10px;
}

.article-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-author i {
    margin-right: 5px;
    color: var(--primary);
}

.article-read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.article-read-more:hover {
    color: var(--accent-hover);
}

.article-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.article-read-more:hover i {
    transform: translateX(5px);
}

/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- FOOTER --- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .search-form {
        grid-template-columns: 2fr 1fr 1fr auto;
    }

    .search-form .btn {
        width: auto;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .biz-card {
        min-width: 300px;
        max-width: 300px;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Navigation Active State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow);
    gap: 20px;
    z-index: 999;
}

.nav-links.active a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-links.active a:last-child {
    border-bottom: none;
}

/* Mobile Actions in Menu */
@media (max-width: 767px) {
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0 25px 25px;
        box-shadow: var(--shadow);
        gap: 15px;
        z-index: 998;
    }
}