/* Basic reset for styling consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 0;
}

/* Main heading styles */
header {
    text-align: center;
   
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
     margin-top: 50px;
}

header h2 {
    font-size: 1.75rem;
    font-weight: normal;
    margin-top: 10px;
    text-align: center;
    align-items: center;
}

header h1 span, header h2 span {
    display: inline-block;
    padding-bottom: 5px;
}

/* Color-specific styles for text */
.explore-our-product-videos-color {
    color: #C54513;
   
}


.Visual-color {
    color: Black;
    
}

.Treats-color {
    color: #A30B1D;
   
}

/* Video grid layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
    gap: 20px; /* Gap between the items */
    padding: 20px;
    justify-items: center; /* Center the items horizontally */
}

.video-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-box:hover {
    transform: scale(1.05); /* Slightly zoom in the video box on hover */
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}



/* Responsive design: 1 column layout on smaller screens */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr; /* 1 column on mobile screens */
    }
}

