/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #ffffff;
    background-color: #fff;
}

h1, h2 {
    margin: 0;
    color: #f26522;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

p {
    margin: 0.5em 0;
}

/* Header */
header {
    background-color: #f26522;
    padding: 1em 0;
    text-align: center;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

header h1 {
    font-size: 2rem;
}

/* Main Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
	text-align: center;
	font-family:SF Pro, Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

.logos img {
    
    width: 1200px;
    margin-bottom: -65px;
    
}

main{
    padding: 2em 0;
}

.videos h2 {
    text-align: center;
    margin-bottom: 1em;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
	margin-top: 100px;

}

a:link
{
	text-decoration: none;
	color: #333;
	
}

.video {
    text-align: center;
    cursor: pointer;

}

.contact
{text-decoration: none;
color: #333;
	font-weight: 500;
}

.video p
{color: #999;}


.video img {
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
	
}

.video img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.lightbox iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f26522;
    color: #fff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    padding: 0.5em 0.7em;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
