/* Reset some default browser styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none; 
    padding: 0;
    margin: 0;
}

/* Regular */
@font-face {
    font-family: 'Hollywood Hills';
    src: url('/fonts/hollywood_hills/sf_hollywood_hills.woff2') format('woff2'),
         url('/fonts/hollywood_hills/sf_hollywood_hills.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Hollywood Hills';
    src: url('/fonts/hollywood_hills/sf_hollywood_hills_bold.woff2') format('woff2'),
         url('/fonts/hollywood_hills/sf_hollywood_hills_bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* BODY START */
body {
    background-image: url(../images/backgrounds/body_bg.jpg);
    background-repeat: repeat;
    color: #B1B1B1;
    font-family: monospace, Courier, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
    width: 100%;
}

body a {
    color: #A1A1A1; 
    font-size: 1.25rem;
}

body a:hover {
    color: #efefef; 
}

body h1 {
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 60px;
    font-size: 2rem;
    font-weight: normal;
}

body h2 {
    color: #B9D5F1;
    margin: 0 0 15px;
    font-size: 1.5rem;
}

body hr {
    box-shadow: 0px 0px 10px 2px #FFFFFF;
    height: 0; 
    margin: 40px auto;
    width: 95%;
}
/* BODY END */

/* WRAPPER START */
.wrapper {
    background-image: url('../images/backgrounds/wrapper_bg.png');
    background-position: center top;
    background-repeat: repeat-y;
    display: grid;
    grid-template-rows: auto 1fr auto; /* Three rows: header, main content, footer */
    font-size: 1.2rem;
    min-height: 100vh; /* vh works with mosts browsers */
    min-height: 100dvh; /* dvh works with newer browsers */
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden; /* fixes issue with page width not stretching 100% on mobile devices */
}

.wrapper header,
.wrapper footer,
.wrapper .full-width {
    padding: 0 17px; 
}

.wrapper .container,
.wrapper .footer {
    margin: 20px; /* Adjust margins to create space around main content */
}
/* WRAPPER END */

/* HEADER START */
.header {
    max-width: 100%;
    position: relative;
    width: 100%;
}

.menu-heading {
    font-family: 'Hollywood Hills', sans-serif; 
    font-size: clamp(2rem, 3vw, 2.2rem);
    text-align: center;
    color: #BBBBBB; /* Use a color to match your design */
    margin-bottom: 1rem;
}

.menu-divider {
    border: 0;
    height: 1px;
    background-color: #BBBBBB; 
    margin: 0.5rem 0 1.75rem; 
}

header nav #nav-links-mobile a {
    font-family: 'Hollywood Hills', sans-serif; 
    font-size: clamp(2rem, 3vw, 2.2rem);
    color: #FFF; 
    text-decoration: none;
    text-transform: uppercase; 
    letter-spacing: 2px;
}

header nav #nav-links-mobile a.active-page {
    color: #611510;
    text-shadow:
        1px 1px 0 #BBB,   /* Outline effect */
        -1px 1px 0 #BBB,
        1px -1px 0 #BBB,
        -1px -1px 0 #BBB,
        0 2px 0 #BBB,
        2px 0 0 #BBB,
        0 -2px 0 #BBB,
        -2px 0 0 #BBB,    /* End of outline effect */
        2px 2px 0px #000,   /* Identical shadow from UP state */
        4px 4px 0px #444,   
        6px 6px 0px #777;   /* Identical shadow from UP state */
}

.header .header-profile-img {
    border: #515151 solid 2px; 
    border-radius: 140px; 
    box-shadow: 4px -5px 10px #3e3e3e; 
    height: 100px;
    margin: 30px 0px 0px 30px; 
    position: absolute; 
    top: 45px; 
    left: 0; 
    width: 100px;
}

.header .header-profile-img:hover {
    opacity: 1.0;
}

.header .header-bg-img {
    border: #3e3e3e solid 2px; 
    border-radius: 20px; 
    box-shadow: 2px -3px 5px #888888;
    display: block;
    margin: 35px auto 0;
    width: 100%;
}
/* HEADER END */

/* MAIN CONTENT CONTAINER FOR 2-COLUMN PAGES (right-side column hidden on mobile) - START */
.container {
    display: grid;
    gap: 20px; 
    grid-template-columns: 1fr; /* Default: Single column layout for mobile */
    grid-template-rows: auto 1fr; /* Banner takes space, then columns */
    margin: 0;
    padding: 0;
    max-width: 960px;
}

.banner-wrapper {
    grid-column: 1 / -1; /* Span across all columns */
    max-width: 100%; /* Ensures the wrapper doesn’t exceed its container’s width */
    padding: 0 20px;
    width: 100%; /* Allows the wrapper to fill the full width of its container */
}

.banner-wrapper-links {
    grid-column: 1 / -1; 
    margin-bottom: -20px;
    max-width: 100%; 
    padding: 0 20px;
    width: 100%; 
}

.page-banner {
    max-height: 100px;
    margin: 0;
    width: auto;
}

/* MAIN CONTENT CONTAINER FOR 2-COLUMN PAGES (right-side column hidden on mobile) - END */

/* MAIN CONTENT CONTAINER FOR 1-COLUMN (FULL WIDTH) PAGES - START */
.full-width {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    font-style: italic;
    margin: 20px auto;
    padding: 0;
    width: 90%;
}
/* MAIN CONTENT CONTAINER FOR 1-COLUMN (FULL WIDTH) PAGES - END */

/* LEFT SIDE CONTENT CONTAINER - START */
.left-side {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    font-style: italic;
    padding: 20px;
    width: 100%;
}

.content-item a {
    display: block;
    text-decoration: none;
    color: #A1A1A1;
}

.content-item a:hover {
    color: #efefef; 
}

.content-item p {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.content-item img {
    width: 100%;
    height: auto;
}

.content-item hr {
    border: 1px solid #B9D5F1; 
    border-radius: 5px; 
    margin: 20px 0px 50px;
}
/* LEFT SIDE CONTENT CONTAINER - END */

/* RIGHT SIDE CONTENT CONTAINER - START */
.right-side {
    background-color: #000000;
    color: #FFFFFF;
    display: none; /* Initially hidden on mobile */
    font-style: italic;
    padding: 20px;
}

.content-item-right-side h1 {
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 60px;
    font-size: 2rem;
    font-weight: normal;
    text-decoration: underline;
}

.content-item-right-side h2 {
    color: #B9D5F1;
    margin: 0 0 15px;
    font-size: 1.5rem;
}

.content-item-right-side {
    font-size: 1.25rem;
}

.content-item-right-side a {
    display: block;
    text-decoration: none;
    color: #A1A1A1;
}

.content-item-right-side a:hover {
    color: #efefef;
}
/* RIGHT SIDE CONTENT CONTAINER - END */

/* HOMEPAGE START */
#homepage-h1 {
    font-family: 'Hollywood Hills', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-style: normal;
    letter-spacing: 0.05em;  /* Slightly increased for readability */
    color: #B9D5F9;  /* Retained your original color */
    margin-bottom: 30px;
    text-align: center;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.9),                  /* Strong base lift */
        0 0 10px rgba(185, 213, 249, 0.9),              /* Glowing cyan with original color */
        0 0 20px rgba(185, 213, 249, 0.6),              /* Soft glow effect */
        0 0 25px rgba(255, 255, 255, 0.3),              /* Subtle white highlight */
        0 0 35px rgba(185, 213, 249, 0.5);              /* Extended cyan misty glow */
}

.homepage   {
    color: #FFFFFF;
}
/* HOMEPAGE END */

/* CONTACT PAGE START */
.contact-container {
    background-color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
    padding: 30px;
    width: 100%;
}

.contact-greeting {
    grid-column: 1 / 2; /* First column */
}

.contact-form-container {
    grid-column: 2 / 3; /* Second column */
    display: grid;
    grid-template-rows: auto 1fr; /* Stack feedback above the form */
    gap: 20px; /* Space between feedback and form */
}

.feedback-message {
    color: #FF0000; /* Adjust color as needed */
    text-align: left;
}

.contact-form {
    border: #A1A1A1 solid 2px; 
    border-radius: 25px; 
    box-shadow: 8px -8px 10px #888888; 
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Single column layout on smaller screens */
        grid-template-rows: auto auto; /* Stacked layout */
    }

    .contact-greeting {
        grid-column: 1 / -1; /* Full width */
    }

    .contact-form-container {
        grid-column: 1 / -1; /* Full width */
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px; /* Space between form fields */
}

label {
    margin-bottom: 5px;
}

input[type="text"],
textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

#submit-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-style: italic;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#submit-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* CONTACT PAGE END */

/* MUSIC PAGE START */
.music-container {
    background-color: #333333; 
    border-bottom: #A1A1A1 solid 4px; 
    border-left: 1px solid #A1A1A1; 
    border-top: #A1A1A1 solid 2px; 
    border-radius: 25px; 
    box-shadow: 4px -4px 4px #888888; 
    color: #A1A1A1; 
    margin: 20px 0; 
    padding: 20px;
}
/* MUSIC PAGE END */

/* VIDEOS PAGE START */
.video-container {
    margin-bottom: 30px; 
    position: relative; /* Ensure relative positioning for absolute iframe */
    width: 100%; 
    padding-bottom: 56.25%; /* Maintain aspect ratio (16:9) */
    overflow: hidden; 
    border: 1px solid #A1A1A1; 
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
}

.video-container iframe {
    position: absolute; /* Position iframe absolutely */
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border: none; /* Remove iframe border */
}
/* VIDEOS PAGE END */

/* PHOTOS PAGE START */
.my-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start; 
}

.my-gallery a {
    display: block;
    margin-bottom: 20px; 
    text-align: center;
    text-decoration: none;
}

.my-gallery a img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc; 
}

.band-thumbnails {
    margin-bottom: 20px; 
}

.band-thumbnails h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
}

.thumbnails a {
    margin: 5px;
}

.thumbnails img {
    max-width: 100%;
    height: auto;
}
/* PHOTOS PAGE END */

/* LINKS START */
.band-links {
    max-width: 100%;
}

.band-links figure  {
    margin-bottom: 30px;
}

.band-links figure img {
    height: auto;
    margin-bottom: 20px;
    max-width: 90%;
}

.band-links figure img.band-links-hh  {
    box-shadow: 0 0 50px #474951;
    border-radius: 40px;
    max-width: 60%;
}

.band-links figcaption {
    font-size: 1.75rem;
    margin-left: 10px;
}

.band-links ul {
    list-style-type: none; 
    padding: 0;
    margin: 0;
}

.band-links li {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 20px; 
}

.band-links li a {
    font-size: 1rem;
    word-break: break-all;  /* allow long words to break and move to next line when exceeding available width of parent */
}
/* LINKS END */

/* TOUR DATES PAGE START */
figure {
    margin-bottom: 50px;
    /* Add other styles as needed */
}

figcaption {
    color: #B9D5F1;
    margin-top: 5px;
}

figure img {
    display: block; 
    height: auto;
    width: 100%;
}
/* TOUR DATES PAGE END */

/* DISCOGRAPHY PAGE START */
.discography-container {
    background-image: url(../images/body_bg.jpg); 
    border-bottom: #A1A1A1 solid 4px; 
    border-left: 1px solid #A1A1A1; 
    border-top: #A1A1A1 solid 2px; 
    border-radius: 25px; 
    box-shadow: 4px -4px 4px #888888; 
    color: #A1A1A1;
    display: grid;
    font-style: normal;
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 40px; 
    padding: 20px;
}

.album-covers {
    grid-row: 1; 
}

.album-covers img {
    max-width: 100%;
    height: auto; 
}

.album-info {
    grid-column: 2; 
}

.album-info ul {
    list-style-type: none;
    padding: 0;
}

.album-info ul li {
    margin-bottom: 5px; 
}

.album-info ul li.released {
    margin-bottom: 30px; 
}

.album-info ul li a {
    font-size: 1rem;
}
/* DISCOGRAPHY PAGE END */

/* ARCHIVES PAGES START */
.archive-heading    {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
}

.archive-heading::before,
.archive-heading::after {
  content: ":::";
  color: #B9D5F1;
  margin: 0 0.5rem;
  font-weight: normal;
  font-size: 1rem;
}

.archive-list {
  line-height: 1.8;
}

.archive-list li a::after {
  content: " \00BB"; /* Unicode for &raquo; */
  margin-left: 0.1em;
}
.return-links a {
  display: block; 
  margin-bottom: 0.5rem; 
  line-height: 1.6; 
}
/* ARCHIVES PAGES END */

/* BAND LOGOS PAGE START */
.band-logos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
    grid-gap: 30px; /* Gap between grid items */
    margin-top: 20px;
}

.band-logo-link {
    display: block; /* Ensure the link takes up the full size of the image */
    text-decoration: none; 
}

.band-logo-link img {
    border-radius: 25px; 
    box-shadow: 5px -5px 8px #888888;
    opacity: 0.75; 
    filter: alpha(opacity=75);
    display: block; 
    width: 100%; 
    height: auto; 
}

.band-logo-link img:hover {
    opacity: 1.0; 
    filter: alpha(opacity=100);
}
/* BAND LOGOS PAGE END */

/* BAND PAGES START */
.full-width-band-page-utp {
    background-image: url(../bands/unleash_the_priest/images/body_bg.gif);
    background-color: #000000;
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    margin: 20px auto;
    max-width: calc(100% - 30px);
    padding: 15px;
    color: #ffffff;
    width: calc(100% - 30px);
}

.full-width-band-page-dsc {
    background-image: url(../bands/dark_sky_choir/images/body_bg.jpg);
    background-color: #000000;
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    margin: 20px auto;
    max-width: calc(100% - 30px);
    padding: 15px;
    color: #ffffff;
    width: calc(100% - 30px);
}

/* FULL WIDTH BAND PAGE START */
.full-width-band-page {
    background-color: #000000;
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    margin: 20px auto;
    max-width: calc(100% - 30px);
    padding: 15px;
    color: #ffffff;
    width: calc(100% - 30px);
}

.full-width-band-page-utp .band-photo, 
.full-width-band-page-dsc .band-photo,
.full-width-band-page .band-photo {
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    margin: 0 auto 40px;
}

.full-width-band-page-utp nav, 
.full-width-band-page-dsc nav,
.full-width-band-page nav {
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.full-width-band-page-utp nav a, 
.full-width-band-page-dsc nav a,
.full-width-band-page nav a {
    font-size: 1rem;
}

.full-width-band-page-utp img, 
.full-width-band-page-dsc img,
.full-width-band-page img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.full-width-band-page-utp p, 
.full-width-band-page-dsc p,
.full-width-band-page p {
    text-align: justify;
    margin-bottom: 40px;
}

.full-width-band-page-utp a, 
.full-width-band-page-dsc a,
.full-width-band-page a {
    color: #A1A1A1;
}

.full-width-band-page-utp a:hover, 
.full-width-band-page-dsc a:hover,
.full-width-band-page a:hover {
    color: #FFFFFF;
}
/* FULL WIDTH BAND PAGE END */

/* VIDEO AND FACEBOOK START */
.video-and-facebook {
    align-items: start; /* Align items to the top */
    display: grid;
    grid-template-columns: 1fr; /* Single column layout on smaller screens */
    grid-gap: 40px;
}

.video-and-facebook .youtube-video {
    background-image: url(../images/backgrounds/body_bg.jpg); 
    border-bottom: #A1A1A1 solid 4px; 
    border-left: 1px solid #A1A1A1; 
    border-top: #A1A1A1 solid 2px; 
    border-radius: 25px; 
    box-shadow: 4px -4px 4px #888888; 
    color: #A1A1A1;
    position: relative;
    width: 100%; /* Ensure YouTube video takes full width of its container */
    padding-bottom: 56.25%; /* 16:9 aspect ratio (adjust as needed) */
    overflow: hidden;
}

.video-and-facebook .youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-and-facebook .facebook-page {
    background-image: url(../images/backgrounds/body_bg.jpg); 
    border-bottom: #A1A1A1 solid 4px; 
    border-left: 1px solid #A1A1A1; 
    border-top: #A1A1A1 solid 2px; 
    border-radius: 25px; 
    box-shadow: 4px -4px 4px #888888; 
    color: #A1A1A1;
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-end; /* Align Facebook embed to the right */
    max-width: 370px;
    padding: 10px;
}
/* VIDEO AND FACEBOOK END */

/* DSC REVIEWS START */
.dsc-reviews {
    background-color: #000000;
    background-image: url(/images/backgrounds/black_swirl_design.jpg);
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    color: #FFFFFF;
    font-style: italic;
    padding: 20px;
}

.dsc-reviews p {
    text-align: left;
}
/* DSC REVIEWS END */

/* CONTENT ITEM RIGHT SIDE START */
.content-item-right-side {
    font-size: 1.25rem;
}

.content-item-right-side h1 {
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 60px;
    font-size: 2rem;
    font-weight: normal;
    text-decoration: underline;
}

.content-item-right-side h2 {
    color: #B9D5F1;
    margin: 0 0 15px;
    font-size: 1.5rem;
}

.content-item-right-side a {
    display: block;
    text-decoration: none;
    color: #A1A1A1;
}

.content-item-right-side a:hover {
    color: #efefef;
}
/* CONTENT ITEM RIGHT SIDE END */

/* FOOTER START */
footer.footer {
    background-image: url(../images/backgrounds/black_messy.jpg);
    border-radius: 20px;
    box-shadow: 5px -5px 8px #888888;
    max-width: 96%;
    overflow: hidden;
    padding: 20px;
    width: 100%;
    text-align: center;
}

footer.footer .footer-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer .footer-social-links li {
    flex: 0 1 auto; /* Allow items to grow, but not shrink */
}

footer.footer .footer-social-links li a img {
    opacity: 0.80;
    filter: alpha(opacity=80);
    width: 40px;
}

footer.footer .footer-social-links li a img:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);
}

footer.footer .footer-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 10px 0;
    margin: 20px 0 0 0;
    background-color: #151515; 
    border-radius: 10px; 
    box-shadow: 5px -5px 8px #505050;
}

footer.footer .footer-nav li {
    display: flex;
}

footer.footer .footer-nav li a {
    font-size: .80rem;
}

footer.footer #footer-copyright {
    color: #FFFFFF;
    margin: 10px 0 0;
}
/* FOOTER END */

/* MEDIA QUERY FOR TABLETS AND LARGER SCREENS - START */
@media (min-width: 768px) {
    .header .header-profile-img {
        height: 150px;
        left: 20px;
        top: 60px;
        width: 150px;
    }

    .header .header-bg-img {
        border: #7e7e7e solid 2px; 
        border-radius: 20px; 
        box-shadow: 2px -3px 5px #717171;
        display: block;
        margin: 0 auto;
        width: 98%;
    }

    .header .header-bg-img:hover {
        border: #A1A1A1 solid 2px;
        box-shadow: 2px -3px 5px #888888;
    }

    #nav-links-large-screens {
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        opacity: 1;
        visibility: visible;
        transition: none;
        position: static;
        margin: 0;
        max-width: 100%;
        padding: 10px 0 15px;
        width: 100%;
    }

    #nav-links-large-screens li {
        display: flex;
        align-items: center; 
        margin: 0; 
    }

    #nav-links-large-screens a {
        font-family: 'Hollywood Hills', sans-serif;  
        font-weight: normal; 
        text-transform: uppercase;
        color: #BBBBBB;
        text-decoration: none;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
        padding: 5px 10px;
        text-shadow: 
            2px 2px 0px #000,   
            4px 4px 0px #444,   
            6px 6px 0px #777;   
        transition: color 0.3s ease-in-out;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        white-space: nowrap; 
        text-align: center; 
        display: block; 
        width: auto; 
    }

    #nav-links-large-screens a:hover {
        color: #FFF; 
    }

    #nav-links-large-screens .active-page {
        color: #611510;
        text-shadow:
            1px 1px 0 #BBB,   /* Outline effect */
            -1px 1px 0 #BBB,
            1px -1px 0 #BBB,
            -1px -1px 0 #BBB,
            0 2px 0 #BBB,
            2px 0 0 #BBB,
            0 -2px 0 #BBB,
            -2px 0 0 #BBB,    /* End of outline effect */
            2px 2px 0px #000,   /* Identical shadow from UP state */
            4px 4px 0px #444,   
            6px 6px 0px #777;   /* Identical shadow from UP state */
    }   
    
    .archive-list {
        list-style-type: none; 
        padding: 0;
        margin: 0;
    }
    .archive-heading    {
          font-size: 2.2rem;
        }

    .container {
        grid-template-columns: 3fr auto; /* Two columns: 3/4 and 1/4 */
    }

    .band-links li {
        font-size: 1.25rem;
    }

    .band-links li a {
        font-size: 1.25rem;
    }

    .band-logos-container   {
        grid-gap: 70px;
    }

    .right-side {
        display: flex;
        flex-direction: column;
        max-width: 380px;
    }

    .full-width-band-page-utp   {
        max-width: 90%;
        padding: 25px;
        width: 90%;
    }

    .full-width-band-page-dsc   {
        max-width: 90%;
        padding: 30px;
        width: 90%;
    }

    .full-width-band-page   {
        max-width: 90%;
        padding: 30px;
        width: 90%;
    }

    .video-and-facebook {
        box-sizing: border-box; /* Include padding and border in width */
        display: grid;
        gap: 25px;
        grid-template-columns: 2fr 1fr; 
        max-width: none; /* Ensure there's no max-width restricting the container */
        padding: 0; 
        width: 100%;
    }

    footer.footer .footer-nav {
        gap: 35px;
    }

    footer.footer .footer-nav li a {
        font-size: 1.25rem;
    }

    footer.footer .footer-social-links {
        gap: 25px;
    }
}
/* MEDIA QUERY FOR TABLETS AND LARGER SCREENS - END */