/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
    color: white;
    padding: 2rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-img {
    height: 200px; /* Default size for larger screens */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Navigation */
nav {
    background-color: #333;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

nav a:hover {
    color: #2989d8;
    background-color: rgba(255,255,255,0.1);
}

/* Video Grid */
.video-grid {
    padding: 2rem 0;
}

.video-grid h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.video-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pin-it {
    display: inline-flex;
    align-items: center;
    color: #e60023;
    font-weight: 500;
    cursor: pointer;
}

.pin-it i {
    margin-right: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2989d8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px; /* Logo for mobile */
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
}

/* For larger screens (tablets and PCs) */
@media (min-width: 601px) {
    .logo-img {
        height: 150px; /* Increase logo size for tablets */
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 200px; /* Larger logo for PCs */
    }
}

/* Gear Section Styles */
.gear-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gear-item h3 {
    color: #4CAF50;
    margin-top: 0;
}

.gear-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin: 10px 0;
}

.gear-link:hover {
    text-decoration: underline;
}

.affiliate-disclaimer {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px;
}
