/* Our Work Header */
.our-work-header {
    background-image: url('WebsiteImages/Football.jpg');
}
.our-work-sub-header h1 {
    margin-top: 100px;
}

/* Our Work Section */
.our-work {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.section-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #fc3f40;
    text-align: center;
}

/* Two-column layout */
.our-work .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding-bottom: 40px;
}

/* Each column */
.our-work-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

/* Video wrapper for responsiveness */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;  /* keeps 16:9 aspect */
    height: 0;
    max-width: 800px;        /* <— cap the width */
    margin: 0 auto;          /* center horizontally */
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Text column */
.our-work-col h1 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #796e6e;
    text-align: center;
}
.our-work-col p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Mobile view */
@media (max-width: 768px) {
    .our-work .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .our-work-col {
        text-align: center;
    }
}
.featured-video .video-wrapper {
    padding-bottom: 56.25%;  /* only this */
    height: 0;               /* remove any fixed height */
}

/* Alternate layout: text first on large screens */
.alt-layout {
    flex-direction: row-reverse;
}

.text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row.reverse {
    flex-direction: row-reverse;
}

/* === FEATURED VIDEO FIX – must come AFTER the generic .video-wrapper === */
.our-work .featured-video .video-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    height: 500px;          /* adjust height as you like */
    padding-bottom: 0 !important; /* override the 16:9 padding */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.our-work .featured-video .video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* ---- Section spacing helpers ---- */
.section-gap {
    margin-top: 60px;    /* space above each row */
}

/* extra space below the featured video block */
.featured-video {
    margin-bottom: 80px;
}

.mid-title {
  color: #fc3f40;
  font-size: 40px; 
  padding-bottom: 2%;
  padding-top: 4%;
}

.showreel-title{
  color: #fc3f40;
  font-size: 60px; 
  padding-bottom: 0.5%;
}

@media (max-width: 768px) {
  .our-work .featured-video .video-wrapper {
    max-width: 98vw;
    height: auto;
    padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
    margin: 0 auto;
  }
  .our-work .featured-video .video-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
  }
  .showreel-title {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}

