/* CWEBZ Co - CSS - Custom Build */
/*! sc-css v3.4.0 | LCL License | https://lenrac.com */


/* Reset and base styles */

/* Reset and base styles*/
.copyright a:link {
    color: #c8e6c9;
    background-color: transparent;
    text-decoration: none;
}
.copyright a:visited {
    color: #c8e6c9;
    background-color: transparent;
    text-decoration: none;
}
.copyright a:hover {
    color: #8BC34A;
    background-color: transparent;
    text-decoration: underline;
}
.copyright a:active {
    color: #c8e6c9;
    background-color: transparent;
    text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e8f5e9"/><path d="M20,20 C40,10 60,10 80,20 C90,40 90,60 80,80 C60,90 40,90 20,80 C10,60 10,40 20,20 Z" fill="%23c8e6c9" opacity="0.5"/></svg>');
    color: #2e4c3a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: rgba(76, 119, 86, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: #c8e6c9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links a i {
    margin-right: 8px;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    width: 100%;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 119, 86, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4c7756, #8bc34a, #4c7756);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2e4c3a;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #4c7756;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #4c7756;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(76, 119, 86, 0.3);
}

.cta-button:hover {
    background: #3a5d42;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 119, 86, 0.4);
}

/* VIDEO GALLERY STYLES */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 119, 86, 0.2);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #e8f5e9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.video-card:hover .play-button {
    background: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #2e4c3a;
}

.video-description {
    color: #5a7a65;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #7a9a85;
    font-size: 0.85rem;
}

.platform {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #c62828;
}

.placeholder-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    color: #2e4c3a;
    padding: 1rem;
    text-align: center;
}

.placeholder-thumbnail i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* SECTION SEPARATOR */
.section-separator {
    position: relative;
    text-align: center;
    margin: 5rem 0;
    padding: 2rem 0;
}

.separator-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4c7756;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(76, 119, 86, 0.2);
    position: relative;
    z-index: 2;
}

.separator-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4c7756, transparent);
    z-index: 1;
}

.separator-decoration {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.separator-decoration i {
    color: #8bc34a;
    font-size: 1.2rem;
    opacity: 0.7;
}

footer {
    background-color: rgba(44, 67, 52, 0.9);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c8e6c9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.fa-leaf:hover {
    color: #8bc34a;
}

.fa-envelope:hover {
    color: #ff9800;
}

.fa-instagram:hover {
    color: #e4405f;
}

.fa-facebook:hover {
    color: #3b5998;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #a5d6a7;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .separator-title {
        font-size: 1.5rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 1.5rem;
    }

    .separator-title {
        font-size: 1.3rem;
        padding: 0.7rem 1.5rem;
    }
}