/* General Styles */
body {
    font-family: 'lato', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1 {
    font-size: 6%;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: -1;
}
h2 {
    font-size: 2rem;
    color: #fdad01;
    margin-top: 5%;
}
h3 {
    font-size: 1rem;
    margin-top: 5%;
}


p {
    margin-bottom: 15px;
    color: #000;
}

a {
    color: #fdad01; /* Change link color */
}

a:hover {
    text-decoration: underline; /* Optional hover effect */
}

@font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato-Regular.woff2') format('woff2'),
         url('/fonts/Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Lato';
    src: url('/fonts/Lato-Bold.woff2') format('woff2'),
         url('/fonts/Lato-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }



.paragraph-container {
    padding-left: 7%;
    padding-right: 7%;
}

.learn-more-btn {
    background-color: #FDAD01;
    border: none;
    color: #111;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.learn-more-btn:hover {
    background-color: #777;
    color: #FDAD01;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    filter: brightness(70%);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: -1;
}
.hero-content h2 {
    font-size: 2rem;
    color: #fdad01;
    margin-top: 5%;
}
.here-content h3 {
    font-size: 1rem;
    margin-top: 5%;
}
.hero-content p {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* About Section */

.about {
margin-bottom: 60px;
}

.about-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about h2{
    font-size: 2.5em;
    text-align: center;
}
.about p {
    font-size: 1em;
    padding: 0px 0;
    text-align: center;
}

.team-container {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;      /* centers vertically if there's height */
  min-height: 100vh;        /* optional: full screen height */
}

.team-member {
  text-align: center;
  width: 45%;
}

.team-member img {
    width: 50%;
    height: auto;
    display: block;       /* ensures margin auto works */
    margin: 0 auto;       /* horizontally centers the image */
    border-radius: 8px;   /* optional: soft corners */
}

.team-member p {
    padding: 5%;
}

.team-member h2 {
    font-size: 18px;
    color: #333;
}

.team-member h3 {
    margin-top: 10px;
    font-size: 24px;
    color: #333;

}

.bio {
    font-size: 16px;
    color: #555;
    line-height: 1em;
    padding-left: 3%;
    padding-right:3%;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 5px;
    text-decoration: none;
    color: #FDAD01;
}

.social-links a:hover {
    color: #111;
}

/* Ads Page */
.ad-hero {
    position: relative;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ad-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    filter: brightness(70%);
}

.ad-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: -1;
}
.ad-hero-content h2 {
    font-size: 2rem;
    color: #fdad01;
    margin-top: 5%;
}
.ad-hero-content h3 {
    font-size: 1rem;
    margin-top: 5%;
}
.ad-hero-content p {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.clause {
    justify-content: center;
    text-align: center;
    width: 100%;
}
.copy-paste-box {
    border: 2px solid #fDAD01;
    background-color: rgb(245, 245, 245);
    padding: 15px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    max-width: 600px;
}

.copy-paste-box h3 {
    color: #FDAD01;
}

.copy-paste-box p,
.copy-paste-box li {
    margin: 5px 0;
}

.copy-paste-box strong {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 1.2em;
    color: #FDAD01;
}

/* Quicklinks Section */
.quicklinks-section {
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quicklinks-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.quicklink-button {
    padding: 12px 24px;
    margin-right: 8px;
    background-color: #fdad01;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.quicklink-button:hover {
    background-color: #999;
}

/* Services Section */
.services {
    text-align: center;
    background-color: #555;
    color: #fff;
    padding-bottom: 60px;
    padding-top: 30px;
}
.services p {
    color: #fff;
}

.service-video-container {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.service-video {
    max-width: 80%;
    max-height: 100%;
    object-fit: cover;
    display: block;       /* make sure it’s block-level */
    margin: 0 auto;       /* center horizontally */
}


.services h2 {
    font-size: 2.5em;
    text-align: center;
}


.service-item h3 {
    font-size: 2.5em;
    color:#FDAD01;
    margin-bottom: 10px;
}


/* Contact Section */
.contact {
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
    align-items: center;
    background-color: #777;
    color: #fff;
}

.contact h1 {
    font-size: 2.5em;
}

.contact h2 {
    font-size: 2.5em;
}
.contact h3 {
    font-size: 2.0em;

}

.contact-btn {
    list-style-type: none;
    padding: 0;
    justify-content: center;
}

.contact-btn a {
    background-color: #FDAD01;
    border: none;
    color: #111;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

/* Blog page */
.back-to-blog {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: #fdad01; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.back-to-blog:hover {
    text-decoration: underline; /* Optional hover effect */
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Work page */
.work-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 5px;
}
.video-preview {
    max-width: 100%;
    height: auto;
    display: block; /* Ensures no extra space below the image */
    margin: 0 auto; /* Centers the image if it is smaller than its container */
}
.video-section {
    display: flex;
    flex-wrap: wrap;           /* Allows items to wrap to the next row */
    gap: 20px;                 /* Adds space between videos */
}
.video-wrapper {
    position: relative;
    width: 100%;
}
.video-wrapper-vertical {
    display: flex;
    gap: 20px;                 /* Adds space between videos */
    justify-content: center;  /* Centers the video horizontally */
    align-items: center;      /* Centers the video vertically */
    max-width: 100%;          /* Ensures video doesn't exceed container width */
    height: auto;
}
.video-wrapper-vertical video {
    max-width: 90%;           /* Limits the video width to 90% of the container */
    max-height: 70vh;         /* Ensures the video doesn’t exceed 80% of the viewport height */
    object-fit: contain;      /* Ensures the aspect ratio is maintained */
}
.video-section p, .video-section ul {
    margin: 20px 0;    /* Add margin above and below the text */
    text-align: left;   /* Align text and list to the left */
    width: 100%;        /* Ensure the text takes full width */
}

.video-section h2 {
    padding-bottom: 0px; /* Adds space for the list bullets */
}

.video-section ul {
    list-style-type: disc;
    padding-left: 20px; /* Adds space for the list bullets */
}

.video-section strong {
    font-size: 1.2em;  /* Optional: Makes the key features bold text a bit larger */
    display: block;    /* Ensures the text is on its own line */
    margin-bottom: 10px;  /* Adds space below the heading */
}
.screenshot {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 30px;
    margin-bottom: 30px;
}
.screenshot-grid {
    display: grid;
    grid-template-columns: auto auto;
}
.back-to-work {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: #fdad01; /* Link color */
    text-decoration: none;
    font-weight: bold;
}
.back-to-work:hover {
    text-decoration: underline; /* Optional hover effect */
}
.screenshot img {
    max-width: 100%;
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}
.testimonial-section {
    padding:20px;
}




.family-photos-section, .headshot-photos-section, .real-estate-photos-section, .senior-photos-section, .commercial-media-section, .event-production-section {
    background-color: #fff;
    margin-bottom: 50px;
}

.family-photos-container, .headshot-photos-container, .real-estate-photos-container, .senior-photos-container, .event-production-container, .commercial-media-container {
    background-color: #fff;
    padding: 50px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-left: 10%;
    padding-right: 10%;
}

.commercial-media-video-section, .event-media-video-section {
    background-color: #fff;
    justify-content: center;
    margin-left: 7%;
    margin-right:7%
}

.showcase-container {
    margin: 0 auto;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* PHOTOGRAPHY PAGE */
* {
    box-sizing: border-box;
  }
  
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }

  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  .screenshot-row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }

  .screenshot-column {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
    max-width: 50%;
    padding: 0 4px;
  }
  .screenshot-row img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  .screenshot-column img {
    margin-top: 8px;
    vertical-align: center;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  .column video {
    margin-top: 8px;
    vertical-align: center;
  }

/* IPAD SIZE STYLES */

  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
    .navbar {
        padding: 5px 5px;
        display: flex;
        align-items: normal;
        flex-wrap: wrap;    
        justify-content: space-between;
        flex-direction: column;
    }
    .top-bar {
        display:flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .button-menu {
        list-style-type: none;
        padding: 0;
    }
    
    .button-menu a {
        display: flex;
        background-color: #FFF;
        color: #333;
        text-align: center;
        padding: 10px 20px;
        text-decoration: none;
        margin: 5px;
        border-radius: 5px;
    }
    .button-menu a:hover {
        background-color: #333;
        color: #fff;
    }
    .desktop-nav {
        list-style-type: none;
        padding: 0;
        display: none;
    }
    .button-nav {
        width: 100%;
        display: none;
        padding: 2px 2px;
    }
    .button-nav a {
        display: block;
        z-index: -1;
    }
    .quicklinks-container {
        display: grid;
        width:100%;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
    }
  }

/* IPHONE SIZE STYLES */

@media (max-width: 600px) {
    h2 {
        margin-top: 25px; /* Increased margin to create more space */
    }

    h3 {
        margin-top: 20px; /* Increased margin to create more space */
    }
    .post-preview {
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .post-meta {
        color: #666;
        font-size: 0.9em;
    }
    .logo {
        margin-bottom: 0px;
    }
    .button-nav {
        width: 100%;
        padding: 2px 2px;
        align-items: center;
    }
    .bio {
        font-size: 16px;
        color: #555;
        line-height: 1em;
    }
    .team-member {
        text-align: center;    /* center inline content like text and images */
        width: 80%;            /* restrict width to 80% of parent */
        margin: 0 auto;        /* center the entire block horizontally */
    }

    .team-member img {
        width: 50%;            /* image takes 80% of .team-member width */
        height: 25%;          /* maintain aspect ratio */
        display: block;        /* make image block-level */
        margin: 0 auto;        /* center image horizontally */
    }

    .button-footer {
        display: grid;
        text-align: center;
        grid-template-columns: auto auto;
    }

    .quicklink-button {
        padding: 8px 16px;
        margin-right: 8px;
        background-color: #fdad01;
        color: white;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        border: none;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 8px;
    }
    .quicklinks-container {
        display: grid;
        width:100%;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 100%;
      }
      .video-column {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
        max-width: 100%;
        padding: 0 4px;
      }
      .screenshot-column {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
        max-width: 100%;
        padding: 0 4px;
      }
      .screenshot-column2 {
        -ms-flex: 50%; /* IE10 */
        flex: 50%;
        max-width: 50%;
        padding: 0 4px;
      }
      .screenshot img {
        max-width: 100%;
        height: auto;
        margin-top: 10px;
    }
    #chat-window {
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        max-width: 100%;
    }

    #chat-header {
        border-radius: 0 ;
    }

    #chat-input {
        border-radius: 0 0 0 0 ;
    }

    #chat-bubble {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
}

 }


/* Chat Widget Styles */

#chat-widget-root > div {
  pointer-events: auto !important;
  position: fixed !important;
  bottom: 1.5rem !important; /* same as bottom-6 */
  right: 1.5rem !important; /* same as right-6 */
  z-index: 99999 !important;
}
#chat-bubble {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 60px;
    height: 60px;
    background: #fdad01;
    border: 2px solid #fdad01;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    z-index: 999999 !important;
}

#chat-bubble:hover { transform: scale(1.1); }
#chat-bubble.hidden { display: none !important; }

#chat-window {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 380px;
    height: 600px;
    background: white;
    border: 2px solid #fdad01;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 999999 !important;
}

#chat-window.open { display: flex !important; }
        
#chat-header {
    background: linear-gradient(to right, #fdad01, #ff9500);
    color: white;
    padding: 16px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#status { font-size: 12px; opacity: 0.9; margin-top: 4px; }

#close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

#messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f9fafb;
}

.message {
    margin-bottom: 12px;
    display: flex;
}

.message.user { justify-content: flex-end; }
.message.cs, .message.system { justify-content: flex-start; }

.message-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.message.user .message-bubble {
    background: #fdad01;
    color: white;
}

.message.cs .message-bubble {
    background: white;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.message.system .message-bubble {
    background: #dbeafe;
    color: #1e40af;
    font-size: 13px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

#chat-input {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background: white;
    border-radius: 0 0 10px 10px;
}

#input-container {
    display: flex;
    gap: 8px;
}

#message-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

#message-input:focus { border-color: #fdad01; }

#send-btn {
    background: #fdad01;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.connecting { animation: pulse 1.5s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
