/* 
Author: Jada Baker
Project: Marketing J
Date: 03/01/2026
File: styles.css
*/

/* Reset */
body, header, nav, main, footer, img, h1, h2, p {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Global Styles */
* {
    box-sizing: border-box;
}
img, video {
    max-width: 100%;
    height: auto;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Full‑page background video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* keeps video behind everything */
    pointer-events: none; /* allows clicking on content */
}

/* Wrapper for all visible content */
.site-content {
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 1em 0;
}

header img {
    width: 180px;      /* adjust to make your logo smaller or larger */
    height: auto;
}

/* Navigation */
nav {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 0.75em 0;
}

nav p {
    font-size: 1.1em;
}

nav a {
    color: #ffffff;
    text-decoration: none;
}

nav a:hover {
    color: #cccccc;
}

/* Hero Section */
#hero img {
    width: 100%;
    height: 350px;        /* adjust height as needed */
    object-fit: cover;    /* makes it look like a banner */
    display: block;
}

/* Main Content */
main {
    padding: 2em;
    text-align: center;
}

main h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

main p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 1em 0;
    background-color: #000000;
    color: #ffffff;
    margin-top: 2em;
}
 /* ----------------------------- */
/* CONNECT PAGE BACKGROUND IMAGE */
/* ----------------------------- */

#connect-page {
    background-image: url("connect.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

/* ----------------------------- */
/* LEFT-SIDE CONTENT BOX */
/* ----------------------------- */

.connect-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    max-width: 420px;
    margin: 0 auto;   /* centers the box */
    border-radius: 8px;
    text-align: center; /* centers all text + form labels */
}

/* ----------------------------- */
/* CONTACT INFO */
/* ----------------------------- */

.contact-info {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ----------------------------- */
/* FORM STYLING */
/* ----------------------------- */

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    align-items: center; /* centers inputs */
}

.quote-form input,
.quote-form textarea {
    width: 100%; /* keeps fields full width inside the box */
    max-width: 350px;
}

/* ----------------------------- */
/* CTA BUTTON */
/* ---------------------------- */

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #444;
}

/* ----------------------------- */
/* GOOGLE MAP */
/* ----------------------------- */

.map {
    margin-top: 20px;
    border-radius: 8px;
}

#connect-page {
    background-image: url("connect.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

/* ----------------------------- */
/* SERVICES PAGE */
/* ----------------------------- */

#services-page {
    padding: 40px;
    max-width: 1100px;
    margin: auto;
}

/* Intro Section */
.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.services-intro p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #000;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease;
}

.service-card:hover {
    background-color: #f2f2f2;
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* Services Page Images */
.service-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
}
/* CTA Section */
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

/* ABOUT PAGE */
#about-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.about-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #000;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-values ul {
    max-width: 700px;
    margin: auto;
    font-size: 1.1em;
    line-height: 1.8;
}

/* VIDEO PAGE */
#video-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    text-align: center;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-box h3 {
    margin-bottom: 10px;
}

.video-box video {
    width: 60%;
    max-width: 280px;
    border-radius: 10px;
    border: 3px solid #000;
    display: block;
    margin: 0 auto;
}

/* Light Grey Background for Pages */
#services-page,
#work-page,
#connect-page,
#about-page {
    background-color: #f2f2f2; /* light grey */
    padding: 40px;
    border-radius: 10px;
}
.site-logo {
    width: 100%;
    height: 150px;       
    object-fit: cover;   
    display: block;
}
/* MOBILE DEFAULT (phones) */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

nav p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.hero-container,
.main-container,
.footer-container {
    padding: 20px;
}

.site-logo {
    width: 180px;
    margin: 10px auto;
}

.quote-form input,
.quote-form textarea,
.quote-form button {
    width: 100%;
    font-size: 1rem;
}
/* TABLET */
@media (min-width: 600px) {

    nav p {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .quote-form {
        max-width: 500px;
        margin: auto;
    }
}

/* DESKTOP */
@media (min-width: 900px) {

    .hero-container {
        max-width: 900px;
        margin: auto;
    }

    .main-container {
        max-width: 1000px;
        margin: auto;
    }

    nav p {
        font-size: 1.1rem;
        gap: 30px;
    }

    .quote-form {
        max-width: 600px;
    }
}
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/* ------------------------------
   FORM STYLES
--------------------------------*/
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 20px auto;
}

.quote-form label {
    font-weight: bold;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1rem;
}

.quote-form input:invalid,
.quote-form textarea:invalid {
    border-color: red;
}

.quote-form input:valid,
.quote-form textarea:valid {
    border-color: green;
}

.cta-button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background: #444;
}
@media (min-width: 600px) {
    .quote-form {
        max-width: 500px;
    }
}
@media (min-width: 900px) {
    .quote-form {
        max-width: 600px;
    }
}




