/* Custom Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('All in Assets/All in_package_Folder/Fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('All in Assets/All in_package_Folder/Fonts/HelveticaNeue.ttc') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Scribblett';
    src: url('All in Assets/All in_package_Folder/Fonts/scribblett.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Dunbar Tall Ultra';
    src: url('All in Assets/All in_package_Folder/Fonts/DunbarTall Ultra.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Medium';
    src: url('All in Assets/All in_package_Folder/Fonts/futura Medium bt.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@media (max-width: 768px) {
    .yellow-cirlce-around::after {
        width: 170px !important;
        top: 16px !important;
        left: -29px !important;
    }

    .underline-after.ua-1::after {
        bottom: -74px !important;
    }

    .underline-after.ua-3::after {
        bottom: -70px !important;
        width: 140px !important;
        left: -20px !important;
    }
    
    .yellow-cirlce-around.yc-2::after {
        width: 240px !important;
        top: 19px !important;
        left: -54px !important;
    }

    .scribblett-font {
        font-size: 2rem !important;
    }
}

@media (min-width: 768px) {
    .underline-after.ua-1::after {
        bottom: -85px !important;
    }

    
    .yellow-cirlce-around.yc-2::after {
        width: 330px !important;
        top: 28px !important;
        left: -52px !important;
    }

    .underline-after.ua-3::after {
        bottom: -74px !important;
        width: 180px !important;
        left: 0px !important;
    }
    
}

.futura-light-font {
    font-family: 'Futura Medium', sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
}

.dunbar-tall-ultra-font {
    font-family: 'Dunbar Tall Ultra', sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.yellow-cirlce-around-container {
    padding: 35px 0px;
    margin-top: -10px;
}

.yellow-cirlce-around::after {
    content: '';
    background: url('/static/All in Assets/Pngs/12.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 18px;
    left: -40px;
    width: 230px;
    height: 100%;
}

.yellow-cirlce-around.yc-1::after {
    width: 210px !important;
}



.font-weight-bold {
    font-weight: bold;
}
.underline-after::after {
    content: '';
    background: url('/static/All in Assets/Pngs/13.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    bottom: -63px;
    left: 0;
    width: 47%;
    height: 100px;
}

.underline-after.w-95::after {
    width: 95% !important;
}

.underline-after.ua-1::after {
    width: 100% !important;
}
/* Theme Colors */
:root {
    --black: #000000;
    --yellow: #fcee21;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    background-color: var(--black) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-text {
    color: var(--white);
    transition: color 0.3s ease;
}

.logo-dot {
    color: var(--yellow);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.logo-animation:hover .logo-text {
    color: var(--yellow);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link-hover:hover {
    color: var(--yellow) !important;
}

.nav-link-hover:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--black);
}

.hero-video {
    position: relative;
    z-index: 3;
    max-width: 80%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2000'); */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.scale-in-animation {
    animation: scaleIn 1.5s ease-out forwards;
    transform: scale(1.2);
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-custom {
    background-color: var(--yellow);
    color: var(--black);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--white);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-custom:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 238, 33, 0.3);
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

/* What If Section */
.what-if-section {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
}

.what-if-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.what-if-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 1000;
}

.what-if-question {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 400;
}

.what-if-finale {
    font-size: 2.5rem;
    line-height: 1.8;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--yellow);
    font-weight: 700;
    text-align: left;
}

/* Work Section */
.work-section {
    padding: 100px 0;
    background-color: var(--black);
}

.work-image {
    opacity: 0.8;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    margin: 0 auto 1rem;
    animation: expandWidth 1s ease-out;
}


@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}


.work-item {
    padding: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    
}

.work-item.visible {
    opacity: 1;
    transform: translateY(0);
    
}

.work-item .image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.image-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 3;
    color: var(--white);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.overlay-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.overlay-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.work-item:hover .image-text-overlay {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.work-video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-container:hover .work-video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 238, 33, 0) 0%, rgba(252, 238, 33, 0.1) 100%);
    pointer-events: none;
}

.work-content {
    padding: 2rem;
}

.work-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.work-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-more-info {
    background-color: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-more-info .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-more-info:hover {
    background-color: transparent;
    color: var(--yellow);
    border-color: var(--yellow);
    transform: translateX(5px);
}

.btn-more-info:hover .arrow {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--black);
}

.contact-email {
    font-size: 2.5rem;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email:hover {
    color: var(--white);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--yellow);
}

.social-link:hover::after {
    width: 100%;
}

/* Contact Form */
.contact-form {
    margin-top: 3rem;
}

.custom-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--yellow);
    color: var(--white);
    outline: none;
    box-shadow: 0 0 20px rgba(252, 238, 33, 0.2);
    transform: translateY(-2px);
}

.custom-input:hover {
    border-color: rgba(252, 238, 33, 0.5);
}

.btn-submit {
    background-color: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 238, 33, 0.3);
}

.btn-submit:hover .arrow {
    transform: translateX(5px);
}

.contact-info {
    margin-top: 3rem;
}

/* Alert/Flash Messages */
.alert {
    border-radius: 10px;
    margin-bottom: 2rem;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Detail Page Styles */
.project-hero-section {
    background-color: var(--black);
    min-height: 100vh;
    position: relative;
    color: var(--white);
}

.breadcrumb-custom {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--yellow);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: var(--white);
}

.project-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.project-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-meta {
    border-top: 2px solid var(--yellow);
    padding-top: 2rem;
}

.meta-item {
    text-align: left;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.project-video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(252, 238, 33, 0.2);
}

.project-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Project Details Section */
.project-details-section {
    padding: 100px 0;
    background-color: var(--black);
}

.section-subtitle-detail {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.project-description {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    white-space: pre-line;
}

.technologies-section {
    padding: 2rem 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    background-color: var(--yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.tech-badge:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 238, 33, 0.3);
}

.project-gallery {
    padding: 2rem 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Related Projects Section */
.related-projects-section {
    padding: 100px 0;
    background-color: var(--black);
}

.related-project-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.related-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(252, 238, 33, 0.2);
    border-color: var(--yellow);
}

.related-project-content {
    padding: 2rem;
}

.related-project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.related-project-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--black);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Responsive for Project Detail Page */
@media (max-width: 992px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }
    
    .section-subtitle-detail {
        font-size: 1.5rem;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 1px solid #ddd;
    padding: 2rem 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .work-title {
        font-size: 1.5rem;
    }
    
    .work-content {
        padding: 1rem 0;
    }
    
    .contact-email {
        font-size: 1.8rem;
    }
    
    .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    .what-if-text {
        font-size: 1.5rem;
    }
    
    .what-if-question {
        font-size: 1.7rem;
    }
    
    .what-if-finale {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-custom {
        padding: 0.8rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-email {
        font-size: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .what-if-text {
        font-size: 1.2rem;
    }
    
    .what-if-question {
        font-size: 1.4rem;
    }
    
    .what-if-finale {
        font-size: 1.8rem;
    }
    
    .what-if-section {
        padding: 60px 20px;
    }
    
    .image-text-overlay {
        padding: 1rem;
    }
    
    .overlay-title {
        font-size: 1.5rem;
    }
    
    .overlay-subtitle {
        font-size: 1rem;
    }
}

/* Fade in on scroll animation */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Video Header Bar */
.video-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left .all-in-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-right .buildahome-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.buildahome-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* Campaign Page Styles */
.campaign-hero-section {
    position: relative;
    height: 100vh;
    background-color: var(--black);
    overflow: hidden;
}

.campaign-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.campaign-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 2rem 4rem;
}

.video-text-overlay {
    text-align: left;
    color: var(--white);
    z-index: 3;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Campaign Content Section */
.campaign-content-section {
    padding: 100px 0 0 0;
    background-color: var(--white);
}

.campaign-section {
    margin-bottom: 120px;
}

.campaign-video-frame {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    margin-bottom: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section-video {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: transparent;
    color: var(--black);
}

.video-text-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--white);
}

.video-title-small {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-subtitle-large {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.campaign-text-section {
    color: var(--black);
    margin-top: 40px;
}

@media (min-width: 768px) {
    .campaign-text-section {
        display: flex;
        gap: 4rem;
        align-items: flex-start;
    }
    
    .campaign-heading {
        flex: 0 0 35%;
        min-width: 35%;
    }
    
    .campaign-content {
        flex: 1;
    }
}

.campaign-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--black);
}

@media (min-width: 768px) {
    .campaign-heading {
        margin-bottom: 0;
    }
}

.position-relative {
    position: relative;
}



.scribblett-font {
    font-size: 2.6rem;
    font-weight: 100 !important;
    font-family: 'Scribblett', sans-serif;
}

.highlighted-text {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.campaign-content {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
}

.campaign-content p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.campaign-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Campaign */
@media (max-width: 992px) {
    .campaign-section {
        margin-bottom: 80px;
    }
    
    .campaign-heading {
        font-size: 2.5rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 2.5rem;
    }
    
    .video-subtitle-large {
        font-size: 2.5rem;
    }
    
    .campaign-content {
        font-size: 1.2rem;
    }
    
    .section-video {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .campaign-hero-section {
        height: 70vh;
        margin-top: 60px;
    }
    
    .video-header-bar {
        padding: 0.5rem 0;
    }
    
    .header-left .all-in-text {
        font-size: 1.2rem;
    }
    
    .buildahome-text {
        font-size: 0.9rem;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 2rem;
    }
    
    .video-subtitle-large {
        font-size: 2rem;
    }
    
    .campaign-heading {
        font-size: 2rem;
    }
    
    .campaign-content {
        font-size: 1.1rem;
    }
    
    .section-video {
        height: 60vh;
    }
    
    .video-play-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .campaign-content-section {
        padding: 60px 0;
    }
    
    .video-title-small {
        font-size: 1.2rem;
    }
}

