body, html {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #c6c6c9;} /* Light grey background */
/*______________  Video Container Start ______________ */
#video-container {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: auto;
    overflow: hidden;
    top: 10px;
    padding: 5px;
    border: 2px solid #000;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;}
#video {
    width: 100%;
    height: auto;}
.video_title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.3);
    color: rgb(212, 202, 198);
    text-align: center;
    font-size: 6vw; /* Responsive font size */
    font-weight: bold;}

    /*______________  Links Container Start ______________ */
#links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #08822dcc; /* container background */
    border: 2px solid #000;
    border-radius: 8px;
    max-width: 1150px;
    width: 100%;
    box-sizing: border-box;    }  
#links-container a {
    font-size: 2.5vw; /* Responsive font size */
    font-weight: bold;
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    background-color: rgba(177, 163, 163, 0.6);
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 10px;}
#links-container a:hover {
    background-color: #007bff;
    color: #fff;}
/*______________  Responsive Font for video / Links ______________ */
@media (max-width: 1024px) {
    .video_title {
        font-size: 4.5vw;    }
    #links-container a {
        font-size: 2vw;    }}
@media (max-width: 768px) {
    .video_title {
        font-size: 3.5vw;    }
    #links-container a {
        font-size: 1.8vw;    }}
@media (max-width: 480px) {
    .video_title {
        font-size: 5.5vw;    }
    #links-container a {
        font-size: 4vw;    }}

/* _____ Welcome To Ontario Start _____   */
.ont-heading-text {    
    position: relative;
    margin: 30px 0;
    font-size: 5.0vw;  /* Adjusted to viewport width */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: rgb(86, 23, 56); /* Add your desired color here */
    margin-bottom: 60px;}      /* Padding below Heading */
.ont-heading-text .underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;}
p { margin: 0; }/* Remove default margins from paragraphs */
.ont-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:5px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
 @media (max-width: 600px) {
.ont-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

.second-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:5px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
 @media (max-width: 600px) {
.second-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

.third-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:5px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
 @media (max-width: 600px) {
.third-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

.forth-paragraph-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:5px;       /* Center the container            */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    line-height: 1.2;
    color: #333333;}
 @media (max-width: 600px) {
.forth-paragraph-text {
    font-size: clamp(1rem, 2.0vw, 1.5rem);
    text-indent: 15px; }}

/* _______ Six Horizontal Boxes that wrap Start _________ */
.six-image-container {    /* Individual image wrapper */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
    margin-bottom: 20px;}
.six-image-wrapper {      /* Base styling for images */
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border: 2px solid #d40a0a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}
.six-fade-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;}
.six-text-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 14.28%; /* 1/7 of the image height */
    background-color: rgba(192, 91, 91, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;    }
.six-text-box a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;    }
.six-text-box a:hover {
        color: blue;   }
/* _______ Six Horizontal Boxes that wrap End _________ */

/* ____ "Locations of Interest" Heading and Text Start ____   */
.locations-of-interest {
    position: relative;
    margin: 30px 0;
    font-size: 5.0vw;  /* Adjusted to viewport width */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: rgb(86, 23, 56); /* Add your desired color here */
    margin-bottom: 60px;}      /* Padding below Heading */
.locations-of-interest .underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: black;}
.locations-text{
    width: 90%;           /* Adjust the width */
    display: flex;
    height: auto;         /* Adjust the height     */
    margin: auto;       /* Center the container            */
    margin-top:-10px;       /* Center the container            */
    margin-bottom: 10px;  /* Padding below the container */
    background: rgba(162, 158, 162, 0.0);
    border: 2px solid rgba(162, 158, 162, 0.0);
    text-indent: 30px; /* Indents the first word */
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    line-height: 1.0;
    color: #333333;}
@media (max-width: 600px) {
.locations-text {
    font-size: clamp(1rem, 5vw, 1.5rem);
    text-indent: 15px; }}

/*__________ Styles for the main blue container _______________*/
.blue-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: 90%;
    background-color: #8b8494e5;
    border-radius: 25px;
    padding: 5px;
    border: 6px solid #8b8494e5;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 20px;}
.blue-container h2 {
    font-size: 2.2em; /* Increased font size for the title */
    margin-bottom: 5px; /* Reduced space below the title */
    color: #0a0a11; /* Ensures title color is white */
    text-align: center; }/* Centers the title text */
.blue-container p {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    max-width: 90%;}
#links-container-bottom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;}
#links-container-bottom a {
    background-color: #b5b3cefc;
    font-size: 1.3em; /* Increased font size for link text */
    color: rgb(2, 1, 1); /* links text */
    text-decoration: none; /* Remove underline from links */
    padding: 10px 15px;
    border: 1px solid rgb(9, 8, 8); /* White border for links */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
    margin: 5px;} 
#links-container-bottom a:hover {/* Space between links */
    background-color: #8d8d97; /* White background on hover */
    color: #0056b3; /* Changed hover text color to match the new button background */
    border-color: #0056b3;} 
.social-icon {/* Changed hover border color to match */
    font-size: 2em; /* Makes the icon larger */
    color: #3b5998; /* Facebook blue color */
    padding: 5px; /* Adds some space around the icon */
    border: none; /* Removes the border inherited from other links */
    background-color: transparent; }/* Ensures no background color */
.social-icon:hover {
    color: #2a498b; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    transition: transform 0.3s ease; }/* Smooth transition for the scale effect */
