:root{
    --primary: #c1ff72;
    --accent: #79b800;
    --light: #f8fafc;
    --text: #1e293b;
    --promo: #ffd700;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}
 .container p, li{
     font-family: sans-serif;
 }

.narrow {
    max-width: 700px;
}

.nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
}

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

.nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--text);
}

.logo {
    font-weight: 4rem 0;
    background: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: black;
}

/* HERO SECTION MAIN PAGE */
.hero {
    padding: 4rem 0;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("assets/images/vidbackup.png");
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    color:white;
    z-index: 1;
}

/* VIDEO  */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* DARK OVERLAY SO TEXT IS READABLE  */
.hero-overlay {
    position: relative;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1; 
}
 /* CONTENT  */
.hero-content {
    position: relative;
    text-align: center;
    padding: 6rem 1rem;
    z-index: 1;
}

/* HEADINGS & PARAGRAPHS */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: sans-serif;
}

.hero-content .btn-primary{
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--text);
}

#hero-promo h1 {
    color:var(--promo);
}

#hero-promo p {
    font-weight: bold;
}

.two-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;        /* vertically center the columns */
    /* justify-content: space-between; */
    /* gap: 2rem;                  space between columns */
    /* flex-wrap: wrap;            allows wrapping on mobile */
}

 /* Left Column: text */
.column-left {
    flex: 1 1 300px;            /* grows, shrinks, min width 300px */
}

.column-left h2{
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #111;
}

.column-left p.subtext{
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.checklist{
    list-style: none;
    padding: 0;
    margin: 0,0,24px;
}

.checklist li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #333;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
}

.trust-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 16px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}
 
  /* Right Column: image */
.column-right {
    flex: 1 1 300px;
    text-align: center;         /* centers image horizontally */
}
  
.column-right img {
    width: 100%;            /* responsive image */
    height: auto;
    border-radius: 10px;         /* optional styling */
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.trust-badge {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    font-size: 0.8rem;
    color: #444;
}
  
.trust-badge span {
    background: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* HERO SERVICES PAGE  */
.hero .small {
    padding: 3rem 0;
}

.section{
    padding: 3rem 0;
}

/* TEMP coming soon hero  */
.section.light{
    background: #f7f8fa;
    min-height: 100vh;        /* fill the full viewport height */
    display: flex;             /* use flex to center content */
    flex-direction: column;
    justify-content: center;   /* vertically center */
    align-items: center;       /* horizontally center */
    padding: 0 20px;           /* horizontal padding */
    box-sizing: border-box;
    text-align: center;
}

/* Responsive font scaling */
.section.light h1,
.section.light h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section.light p {
    font-size: 1.1rem;
    max-width: 600px;
}

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

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

.card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    border-color: var(--accent);
}

.btn{
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
}

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

.btn-promo{
    background: var(--promo);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 20px;
    /* background: #f9f9f9; */
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../assets/images/contactusbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border-radius: 12px; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
  
.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
  
.contact-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-section a {
    color: #f0f0f0;
}
  
.two-columns {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
  
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color:white;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: white;
}

/* .contact-list li {
    margin-bottom: 10px;
    font-weight: 500;
} */
  
.contact-info ul.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
  
.contact-info ul.contact-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: white;
}
  
.contact-info .trust-note {
    margin-top: 20px 0;
    font-style: italic;
    color:white;
}

.cta-buttons {
    /* margin-top: 20px; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
  
.cta-buttons .btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

.mobile-contact-bar {
    display: none;
}

.footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* BASE STYLES */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* Grid & columns */
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .two-columns {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .contact-grid {
        display: flex !important;       /* switch from grid to flex */
        flex-direction: column !important; /* stack all children vertically */
        gap: 20px;                       /* spacing between contact info and buttons */
    }
    
    .column-left h2 {
        font-size: 1.7rem;
    }
    .column-right {
        text-align: center;
    }

    /* CTA Buttons */
    .cta-buttons {
        display: flex;
        flex-direction: column;  /* stack vertically */
        align-items: stretch; 
        gap: 12px;
        width: 100%;    /* buttons fill container width */
    }

    .cta-buttons .btn {
        width: 100%;             /* full width buttons */
        text-align: center;      /* center the text */
    }

    /* Navigation */
    .nav nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 64px;
        right: 5%;
        width: 90%;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    .nav-links a {
        margin: 0.5rem 0;
    }
    .nav-links.active {
        display: flex;
    }

    /* Hero Section */
    .hero-video {
        display: none;
    }
    /* #hero-default,
    #hero-promo {
        background-size: cover;
        background-position: center top;
        height: auto;
    } */
    #hero-default {
        background-image: url("assets/images/vidbackup.png");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        min-height: 100vh; /* full screen */
        position: relative;
    }

    #hero-default::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        /* background:linear-gradient( rgba(0,0,0,0.6)); *overlay gradient */
    }

    #hero-promo { 
        background: linear-gradient(rgba(0,0,0,0.6)), url("assets/images/promovid-backup.png") center/cover no-repeat; 
    }

    .section.light {
        padding: 0 15px;
    }
    .section.light h1,
    .section.light h2 {
        font-size: 2rem;
    }
    .section.light p {
        font-size: 1.7rem;
    }

    /* Mobile contact bar */
    .mobile-contact-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .mobile-btn {
        flex: 1;
        text-align: center;
        padding: 14px;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
    }
    .mobile-btn.call { background: #000; color: #fff; }
    .mobile-btn.email { background: #f5f5f5; color: #000; }

    /* Prevent content from being hidden behind sticky bar */
    body { padding-bottom: 56px; }
}

/* EXTRA SMALL DEVICES (iPhone / narrow screens) */
@media (max-width: 480px) {
    .two-columns {
        gap: 16px;
        padding: 0 10px;
    }
    .column-left h2 {
        font-size: 1.5rem;
    }
    .cta-buttons {
        gap: 8px;                /* slightly smaller gap on very small screens */
    }
    .cta-buttons .btn {
        padding: 10px;           /* smaller button padding */
        font-size: 14px;
    }
    #hero-default,
    #hero-promo {
        background-position: center top;
    }
    #hero-default { 
        background: linear-gradient(rgba(0,0,0,0.6)), url("assets/images/vidbackup.png") center/cover no-repeat; 
    } 
    #hero-promo { 
        background: linear-gradient(rgba(0,0,0,0.6)), url("../assets/images/promovid-backup.png") center/cover no-repeat; 
    }
    .menu-toggle {
        font-size: 2rem;
        padding: 12px;
    }

    .section.light h1,
    .section.light h2 {
        font-size: 1.6rem;
    }
    .section.light p {
        font-size: 0.9rem;
    }
}