@charset "UTF-8";
/* CSS Document */

html, 
html * {
    padding: 10;
    margin: 10;
    box-sizing: border-box;
    background-color: #e2d2b1;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

header {
    padding: 3px;
}

body {
    margin-left: auto;
    margin-right: auto;
    background: #faf44a;
}

/* Video-specific styles - ONLY CHANGED THESE LINES */
.video-container {
    width: 100%;
    max-width: 600px; /* Reduced from 800px for better desktop viewing */
    margin: 20px auto;
    background-color: transparent;
    text-align: center; /* Added this to center the video */
}

.video-container video {
    width: 100%; /* Changed from 50% to 100% */
    max-height: 400px; /* Added max-height to control portrait videos */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* Removed the invalid "position: center" property */
    display: block;
    margin: 0 auto; /* Added this for extra centering */
    object-fit: contain; /* Ensures video maintains aspect ratio within constraints */
}

/* ALL OTHER STYLES KEPT EXACTLY THE SAME */
.video-description {
    background-color: transparent;
    margin: 20px 0;
}

.video-list {
    background-color: transparent;
    margin: 20px 0;
}

.video-item {
    background-color: transparent;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #8d735e;
    border-radius: 8px;
}

.video-item h3 {
    margin: 0 0 10px 0;
    background-color: transparent;
    color: #34a766;
}

.video-item h3 a {
    text-decoration: none;
    color: #34a766;
    font-size: 24px;
    font-weight: bold;
}

.video-item h3 a:hover {
    color: #8d735e;
}

.video-item p {
    margin: 0;
    background-color: transparent;
    color: #333;
}

.video-navigation {
    background-color: transparent;
    margin: 20px 0;
    text-align: center;
}

/* Headings */
h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    color: #ea272b;
    padding-top: 0px;
    padding-bottom: 10px;
    text-align: center;
    background-color: transparent;
}

h2 {
    font-size: 30px; 
    text-transform: capitalize; 
    font-weight: bold;
    margin-bottom: 23px;
    padding-top: 30px;
    padding-bottom: 20px;
    color: #34a766;
    background-color: transparent;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #34a766;
    background-color: transparent;
}

h4 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 35px;
    padding-top: 0px;
    background-color: transparent;
    color: #34a766;
}

h5 {
    font-size: 17px;
    margin-bottom: 100px;
    background-color: transparent;
    font: bold;
    color: #34a766;
}

h6 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    color: #ea272b;
    padding-top: 0px;
    padding-bottom: 10px;
    text-align: center;
    background-color: transparent;
}

p {
    font-weight: 200;
    margin: 10px 10px 10px 10px;
    background-color: transparent;
    font-size: 18px;
    width: 95%;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.button {
    display: inline-block;
    margin-top: 0px;
    border: 2px #ffffff solid;
    padding: 8px 30px;
    border-radius: 30px;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #8d735e;
}

.button:hover {
    background-color: #34a766;
    border-color: #34a766;
}

.col {
    width: 100%;
}

.col-single-page {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.row:before, .row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

/* Footer */
footer {
    padding-top: 30px;
    vertical-align: middle;
}

.footer-content {
    width: 100%;
    display: block;
    padding-bottom: 20px; 
    vertical-align: middle;
}

.footer-social {
    display: block;
    width: 100%;
    list-style-type: none;
    text-align: center;
    vertical-align: middle;
}

.legal {
    font-size: 12px;
    margin-top: 10px;
    color: #ea272b;
}

/* RESPONSIVE MEDIA */

/* Tablet View */
@media (min-width: 768px) {
    h1 {
        margin-bottom: 15px;
        margin-top: 0px;
        padding-top: 10px;
        font-size: 60px;
    }
    
    h2 {
        margin-bottom: 16px;
        font-size: 36px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 30px;
        color: #34a766;
        background-color: transparent;
    }
    
    h6 {
        margin-bottom: 15px;
        margin-top: 0px;
        padding-top: 10px;
        font-size: 80px;
    }
    
    .col {
        float: left;
        padding: 0px 7px 14px;
    }
    
    .video-container {
        max-width: 700px; /* Reduced from 900px */
    }
    
    .video-container video {
        max-height: 500px; /* Increased max-height for tablet */
    }
}

/* Small Desktop View */
@media (min-width: 992px) {
    body {
        max-width: 1200px;
    }
    
    .col {
        float: left;
        padding: 0px 7px 14px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h5 {
        font-size: 16px;
    }
    
    h6 {
        font-size: 90px;
    }
    
    .video-container {
        max-width: 750px; /* Reduced from 1000px */
    }
    
    .video-container video {
        max-height: 600px; /* Added max-height for desktop */
    }
}

/* Large screen View */
@media (min-width: 1150px) {
    h2 {
        font-size: 35px;
    }
    
    h5 {
        font-size: 16px;
    }
    
    h6 {
        font-size: 100px;
    }
}

@media (min-width: 1450px) {
    h2 {
        font-size: 37px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 100px;
    }
}

