.elementor-27542 .elementor-element.elementor-element-d749e04{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-bf9fdce *//* ============================================
   Sea Renovation Blog - Fire Pit on a Deck
   Matches site brand: professional, clean, warm
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #2d2d2d;
    background: #fff;
}

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

a {
    color: #e8a439;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #c78a24;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: #1a1a2e;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.header-nav a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8a439;
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-nav a:hover {
    color: #e8a439;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8a439;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-call:hover {
    background: #c78a24;
    color: #fff;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.blog-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1598015875788-1c4a0e594ce0?w=1400&q=80') center/cover no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 60px 24px;
}

.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* ============================================
   BLOG LAYOUT
   ============================================ */
.blog-main {
    padding: 50px 20px 60px;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Summary + TOC Row */
.blog-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.summary-box {
    background: #f8f6f2;
    border-left: 4px solid #e8a439;
    border-radius: 8px;
    padding: 24px 28px;
}

.summary-label {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.summary-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.summary-box p:last-child {
    margin-bottom: 0;
}

.toc-box {
    background: #f8f6f2;
    border-radius: 8px;
    overflow: hidden;
}

.toc-header {
    background: #1a1a2e;
    padding: 14px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.toc-body {
    padding: 18px 24px;
}

.toc-body ul {
    list-style: none;
}

.toc-body > ul > li {
    margin-bottom: 8px;
}

.toc-body > ul > li > a {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
}

.toc-body > ul > li > a:hover {
    color: #e8a439;
}

.toc-body ul ul {
    margin-top: 5px;
    padding-left: 18px;
}

.toc-body ul ul li {
    margin-bottom: 4px;
}

.toc-body ul ul a {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.toc-body ul ul a:hover {
    color: #e8a439;
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.blog-article {
    font-size: 17px;
    line-height: 1.8;
}

.blog-article p {
    margin-bottom: 20px;
    color: #333;
}

.blog-article h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 48px 0 18px;
    padding-top: 10px;
    line-height: 1.3;
}

.blog-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 32px 0 14px;
    line-height: 1.35;
}

.blog-article ul {
    margin: 0 0 24px 24px;
    padding: 0;
}

.blog-article ul li {
    margin-bottom: 8px;
    color: #444;
    padding-left: 4px;
}

.blog-article img {
    border-radius: 10px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-article strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0 32px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table thead {
    background: #1a1a2e;
}

.comparison-table th {
    color: #fff;
    font-weight: 600;
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.comparison-table tbody tr:nth-child(even) {
    background: #faf9f7;
}

.comparison-table tbody tr:hover {
    background: #fff7e9;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 20px;
    margin: 28px 0 32px;
}

.step-card {
    background: #f8f6f2;
    border-radius: 10px;
    padding: 28px 30px;
    position: relative;
    border-left: 4px solid #e8a439;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e8a439;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* Red Flags */
.red-flags-list {
    margin: 24px 0 32px;
}

.red-flag-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

.red-flag-item:last-child {
    border-bottom: none;
}

.red-flag-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2f0;
    color: #d9534f;
    border-radius: 50%;
    font-size: 18px;
    margin-top: 2px;
}

.red-flag-content h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #1a1a2e;
}

.red-flag-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin: 24px 0 40px;
}

.faq-item {
    background: #f8f6f2;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
    border-left: 4px solid #e8a439;
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

.faq-item a {
    color: #e8a439;
    font-weight: 500;
}

/* CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d50 100%);
    border-radius: 14px;
    padding: 44px 40px;
    margin: 48px 0 40px;
    text-align: center;
}

.blog-cta-box h2 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 0 16px;
    padding: 0;
}

.blog-cta-box p {
    color: #ccc;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.blog-cta-box a {
    color: #e8a439;
}

.blog-cta-box a:hover {
    color: #f0b84d;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8a439;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #d49530;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    border-color: #e8a439;
    color: #e8a439;
}

/* Article Details */
.article-details {
    background: #f8f6f2;
    border-radius: 10px;
    padding: 28px 32px;
    margin-top: 40px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e8e5e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    min-width: 120px;
}

.detail-value {
    font-size: 14px;
    color: #555;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
    color: #fff;
    transform: scale(1.1);
    opacity: 0.85;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 20px 30px;
}

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

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

.footer-about img {
    max-width: 200px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #e8a439;
}

.contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list li a i {
    color: #e8a439;
    margin-top: 3px;
    flex-shrink: 0;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    background: #e8a439;
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 40px 0 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header-nav ul {
        gap: 18px;
    }

    .header-nav a {
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .blog-hero {
        min-height: 320px;
    }

    .blog-intro-row {
        grid-template-columns: 1fr;
    }

    .blog-article h2 {
        font-size: 1.4rem;
    }

    .blog-article h3 {
        font-size: 1.1rem;
    }

    .blog-cta-box {
        padding: 32px 24px;
    }

    .blog-cta-box h2 {
        font-size: 1.35rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .red-flag-item {
        flex-direction: column;
        gap: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 14px;
        font-size: 13px;
    }

    .article-details {
        padding: 20px 22px;
    }

    .detail-row {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .detail-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

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

    .hero-content {
        padding: 40px 16px;
    }

    .blog-main {
        padding: 30px 16px 40px;
    }

    .summary-box,
    .faq-item {
        padding: 18px 20px;
    }

    .step-card {
        padding: 22px 22px;
    }

    .blog-cta-box {
        padding: 28px 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */