/* css/home.css */

/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     /* Dark background from design */
    color: #FFFFFF; /* Default text color */
     background-color: #0C0C0C;
}

/* Section 00: The Power of Booth Videos */
#section-00 {
    
    padding-top: 60px;
    text-align: center;
    z-index: 0;
    align-self: center;
}

#section-00 h1 {
    font-size: 48px;
    margin-bottom: 10px;
   
}

#section-00 h2 {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 768px) {
       #section-00 {
    
        padding-top: 10px;
        text-align: center;
        z-index: 0;
        align-self: center;
        }
        #section-00 h1 {
    font-size: 38px;
    margin-bottom: 10px;
   
                }
                #section-00 h2 {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}
}

/* Section: Stats Splash */
#section-splash {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.section-splash-container {
  width: 100%;
  max-width: 100vw; /* Prevent container from exceeding viewport */
  margin: 0 auto; /* Center the container */
  background-color: #0C0C0C;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

#splashcanvas {
  width: 100%; /* Makes canvas take full width of container */
  max-width: 100%; /* Prevents canvas from overflowing */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes inline spacing */
  margin: 0 auto; /* Centers the canvas */
  z-index: 15;
  box-sizing: border-box;
}

/* Media queries for different screen sizes */
@media (max-width: 768px) {
  #section-splash {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .section-splash-container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  
  #splashcanvas {
    width: 130%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  #section-splash {
    margin: 0;
    padding: 0;
  }
  
  .section-splash-container {
    width: 130%;
    padding: 0;
  }
  
  #splashcanvas {
    width: 100%;
    max-width: 100vw;
    height: auto;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  #splashcanvas {
    width: 130%;
    max-width: 100vw;
    height: auto;
    transform: scale(0.95); /* Slightly scale down if needed */
    transform-origin: center;
  }
}
/* Section: Initial CTA */
#cta-one {
    height: auto;
    text-align: center;
    margin-bottom: 0px;
}

.cta-one-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 30px;
    background-color: #0C0C0C;
}


.cta-one-container img {
    width: 30px;
    height: 30px;
    margin: 10px;
}

.cta-one-container h2 {
    font-size: 24px;
}

.cta-button {
    background: linear-gradient(90deg, #FF5E62, #FF9966);
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
}

.cta-button p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
  .cta-one-container {
    flex-direction: column;
    margin-bottom: 30px;
    }
  .cta-one-container h2 {
    font-size: 14px;
    }
    
  
}

#message-one {
    margin-top: 120px;
    padding: 60px 20px;
    background-color: #1A1A1A;
    
}

.message-one-container {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Center the flex items horizontally */
    align-items: center; /* Center the flex items vertically */
    gap: 40px;
    
}



.message-one-text {
    flex: 1;
    
}

.message-one-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.message-one-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.message-one-text ul {
    list-style: none;
    font-size: 14px;
    opacity: 0.7;
}

.message-one-image img {
    width: 200px;
    height: auto;
}
@media (max-width: 768px) {
    .message-one-container {
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center; /* Center the flex items horizontally */
        align-items: center; /* Center the flex items vertically */
        gap: 10px;
    }
    .message-one-image img {
    width: 100px;
    height: auto;
    }
}

/* Section: Message Two */
#message-two {
    
    
    padding: 60px 20px;
    background-color: #1A1A1A;
}

.message-two-container {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Center the flex items horizontally */
    align-items: center; /* Center the flex items vertically */
    gap: 40px;
}



.message-two-image img {
    width: 200px;
    height: auto;
}

.message-two-text {
    flex: 1;
    
}

.message-two-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.message-two-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.message-two-text ul {
    list-style: none;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .message-two-container {
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center the flex items horizontally */
        align-items: center; /* Center the flex items vertically */
        gap: 10px;
    }
    .message-two-image img {
    width: 100px;
    height: auto;
    }
}

/* Section: Looping Video */
#more-than {
    margin-top: 120px;
    position: relative; /* Make the section a positioning context for the overlay */
    padding: 0; /* Remove padding since the video is full-width */
}

.video-container-main {
    width: 100vw;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
   
}

.video-container-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-text-overlay-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text both vertically and horizontally */
    text-align: center;
    width: 100%;
    padding: 20px;
    color: #FFFFFF; 
}

#more-than h1 {
    font-size: 40px;
    margin-bottom: 10px;
    
}

#more-than h3 {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 768px) {
    #more-than h1 {
        font-size: 32px;
    }

    #more-than h3 {
        font-size: 18px;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .video-text-overlay {
        padding: 15px;
    }
}

/* Section: Product Offerings */
#section-05-products {
    
    padding: 60px 20px;
}

#product-offerings {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-around;
    transform: translateY(-120px);
    
}

.product-tile {
    background-color: #FFFFFF;
    color: #1C2526;
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    box-shadow: 8px 4px 70px 35px rgba(0, 0, 0, 0.849);
    
}

.product-tile h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-tile p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-tile p:first-of-type {
    font-size: 24px;
    font-weight: 700;
    color: #FF5E62;
}

.product-tile button {
    background: linear-gradient(90deg, #FF5E62, #FF9966);
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* css/home.css */

/* Section: Client Quotes */
#section-03 {
   
    margin-top: 150px;
    overflow: hidden;
}

#client-quotes {
    display: flex;
    animation: scroll 20s linear infinite;
}

.client-quote {
    background-color: #ffffffde;
    color: #1C2526;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.client-quote img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover; /* Ensure image fits nicely */
}

.client-quote .company-name {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #160c0c;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    
    padding: 10px 50px;
    box-sizing: border-box;
    line-height: 1.2;
   
}

.client-quote .quotes {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.client-quote .customer-info {
    font-size: 14px;
    opacity: 0.8;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section 07: Large Quotes */
#section-07 {
    margin-top: 60px;
    padding: 60px 20px;
}

.large-quote {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.large-quote p:first-child {
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    color: #FF5E62;
}

.large-quote p:last-child {
    font-size: 16px;
    opacity: 0.8;
}

/* css/home.css */

/* Section 10: Contact Dial */
/* Simplified Safari-friendly approach */
#section-10-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    transform: translateY(210px); /* Start hidden */
    transition: transform 0.3s ease;
    z-index: 1000;
}

#section-10-container.visible {
    transform: translateY(0); /* Slide into view */
}

#contactcanvas{
    width: 190px;
    height: 190px;
}

.contact-link {
    background: linear-gradient(90deg, #FF5E62, #FF9966);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.contact-link h1 {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 768px) {
    #section-10-container {
        bottom: -180px; /* Start offscreen on mobile */
        
    }

    #contact-link.visible {
        bottom:10px; /* Final position on mobile */
    }

    .contact-link {
        padding: 3px 3px;
    }

    .contact-link h1 {
        font-size: 16px;
    }
}

/* Section 06: Ready for Your Event */
#section-05-event {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full viewport height - adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image styling */
#section-05-event .showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire area without distortion */
    object-position: center; /* Centers the image */
    z-index: 1;
}
/* Optional: Add overlay for better text readability */
#section-05-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.17); /* Dark overlay - adjust opacity as needed */
    z-index: 2;
}

/* Text content styling */
.showcase-copy {
    position: relative;
    z-index: 3; /* Ensures text is above image and overlay */
    width: 70%;
    padding: 40px;
    text-align: center; /* Center align text - change to left if preferred */
    color: white; /* Assuming white text on dark image */
    background: rgba(0, 0, 0, 0.701); /* Semi-transparent background for text readability */
    border-radius: 12px;
    backdrop-filter: blur(5px); /* Modern glass effect */
    
}

/* Typography styling */
.showcase-copy h1 {
    font-family: 'NamianBlack', 'DM Sans', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    
}
 

#section-05-event h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

#section-05-event h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.8;
}

#section-05-event p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

#section-05-event button {
    background: linear-gradient(90deg, #FF5E62, #FF9966);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}

#video-offerings-section{
  background-color: white;
    color: #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
    
}
.video-intro-container{
    
    width: 70%;
    margin-top: 80px;
     margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    
}
.video-intro-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}
.video-intro-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
.video-intro-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.video-intro-text ul {
    list-style: none;
    font-size: 14px;
    opacity: 0.7;
}

.video-story-container {
    
    width: 70%;
    
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    
}
.video-story-image {
    display: flex;
    flex-direction: column;
    align-self: center;
    
    
}
.video-story-image img{
    align-self: center;
    max-width: 110%;
    
}




