/* ============================================================
   GLOBAL RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("/assets/img/logo/looney_ave_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;

    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.65)
    );
    backdrop-filter: blur(2px); /* optional soft blur */
    z-index: -1;
}

a {
    color: #0055aa;
    text-decoration: none;
}

.page {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
    background: #333;
    padding: 10px 0;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}
.nav-logo a{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}
.nav-links a:hover {
    color: #1384f6;
    text-decoration: none;
}
.nav-cta {
    background: #0055aa;
    padding: 6px 12px;
    border-radius: 4px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.footer-links h4{
    text-align: center;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.8;
}

/* ============================================================
   BUTTONS
============================================================ */
.hero-buttons a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

/* Primary button */
.btn-primary {
    background: #0055aa;
    color: #fff;
}

/* Secondary button */
.btn-secondary {
    background: #ffffff;
    color: #0055aa;
    border: 2px solid #0055aa;
}

.btn-primary:hover {
    background: #003f82;
}

.btn-secondary:hover {
    background: #0055aa;
    color: #fff;
}


/* ============================================================
   HOMEPAGE — HERO
============================================================ */
.hero {
    padding: 20px 20px 60px;
    text-align: center;
    background: transparent;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

/* ============================================================
   HOMEPAGE — ABOUT PREVIEW
============================================================ */
.about-preview {
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ============================================================
   HOMEPAGE — SERVICES PREVIEW
============================================================ */
.services-preview {
    padding: 60px 20px;
    background: #f0f0f0;
    text-align: center;
    border-radius: 8px;
    max-width: 1100px;
    margin: 40px auto;
}

.service-list {
    list-style: none;
    max-width: 400px;
    margin: 0 auto 25px auto;
}

.service-list li {
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* ============================================================
   HOMEPAGE — PHOTO PREVIEW
============================================================ */
.photo-preview {
    padding: 60px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 40px auto;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.photo-box {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.photo-box img {
    width: 100%;
    border-radius: 4px;
}

/* ============================================================
   HOMEPAGE — CTA
============================================================ */
.cta {
    padding: 60px 20px;
    background: #0055aa;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    max-width: 1100px;
    margin: 60px auto;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
/* -----------------------------------
   HERO LOGO FIX
----------------------------------- */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px; /* spacing between logo + button */
}

.hero-logo {
    max-width: 260px; /* adjust size as needed */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-btn {
    margin-top: 10px;
}
/* -----------------------------------
   MOBILE HAMBURGER
----------------------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* Mobile menu hidden by default */
.nav-links {
    transition: max-height 0.3s ease;
}

.nav-links.open {
    max-height: 500px;
}

@media (max-width: 700px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background: #333;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
    }

    .nav-links li {
        border-top: 1px solid #444;
        padding: 12px 20px;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }
}
/* -----------------------------------
   ABOUT PAGE — FINAL POLISH
----------------------------------- */

.about-page {
    max-width: 1100px;
    margin: auto;
}

/* Page header card */
.page-header {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 17px;
    color: #555;
}

/* About sections */
.about-section {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 35px;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-section p {
    margin-bottom: 15px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Bullet list */
.about-list {
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* CTA at bottom */
.about-page .cta {
    max-width: 100%;
    margin-top: 50px;
}
/* -----------------------------------
   CONTACT PAGE — FINAL POLISH
----------------------------------- */

.contact-page {
    max-width: 1100px;
    margin: auto;
}

/* Contact info card */
.contact-info {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 35px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact details list */
.contact-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.contact-details li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Contact form card */
.contact-form-section {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 35px;
}

.contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 15px;
    background: #fafafa;
}

textarea {
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    padding: 12px 22px;
    font-size: 16px;
}
/* Center + size the page header logo */
.page-header .hero-logo {
    display: block;
    margin: 0 auto 20px auto; /* centers + adds spacing below */
    max-width: 180px;         /* adjust size as needed */
    width: 100%;
    height: auto;
}
/* -----------------------------------
   PHOTOS PAGE — FINAL POLISH
----------------------------------- */

.photos-page {
    max-width: 1100px;
    margin: auto;
}

/* Intro paragraph */
.gallery-intro {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-intro p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Gallery grid */
.photo-gallery {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Individual gallery items */
.gallery-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Captions */
.caption {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
}

/* -----------------------------------
   SERVICES PAGE — FINAL POLISH
----------------------------------- */

.services-page {
    max-width: 1100px;
    margin: auto;
}

/* Intro paragraph card */
.services-intro {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    text-align: center;
}

.services-intro p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Service table card */
.service-table {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
}

.service-table h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

table th {
    background: #f0f0f0;
    font-weight: bold;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
}

table td {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    color: #444;
}

/* Pricing note card */
.pricing-note {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
}

.pricing-note p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}


/* -----------------------------------
   REVIEWS PAGE — FINAL POLISH
----------------------------------- */

.reviews-page {
    max-width: 1100px;
    margin: auto;
}

/* Intro card */
.reviews-intro {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    text-align: center;
}

.reviews-intro p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Review cards container */
.placeholder-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Individual review card */
.review-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.review-card.placeholder {
    opacity: 0.85;
}

.review-text {
    font-style: italic;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-author {
    text-align: right;
    font-weight: bold;
    color: #333;
}
/* -----------------------------------
   HOMEPAGE SERVICES ACCORDION
----------------------------------- */

/* -----------------------------------
   HOMEPAGE SERVICES ACCORDION — TIGHT + CLEAN
----------------------------------- */

.accordion {
    max-width: 600px;
    margin: 20px auto 30px;
}

/* Accordion item */
.accordion-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.accordion-item.active {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Header */
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: #f7f7f7;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #eee;
}

/* Chevron arrow */
.accordion-header::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.25s ease;
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Body */
.accordion-body {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    font-size: 14px;
    color: #444;
    line-height: 1.45;
}

.accordion-item.active .accordion-body {
    padding: 12px 16px 14px;
    max-height: 200px;
}

/* Bullet list */
.accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.accordion-body li {
    position: relative;
    padding-left: 16px; /* tighter */
    margin-bottom: 6px; /* tighter */
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

/* Neon bullet */
.accordion-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #bafa1d;
    font-size: 16px; /* smaller */
    line-height: 1;
}
.contact-btn-table {
    display: inline-block;
    padding: 6px 14px;
    background: #0a7cff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.contact-btn-table:hover {
    background: #005fcc;
}

/* Thank You Page */
.thankyou-page {
    padding: 60px 20px;
    text-align: center;
}

.thankyou-page .page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #333;
}

.thankyou-page .page-header p {
    font-size: 1.1rem;
    color: #555;
}

.thankyou-content {
    max-width: 700px;
    margin: 40px auto 0;
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.thankyou-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.thankyou-content strong {
    font-size: 1.2rem;
    color: #000;
}

.thankyou-content .btn-primary {
    margin-top: 10px;
    display: inline-block;
}
