/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    background-color: #0d0d0d; /* Dark background */
    color: #e0e0e0; /* Light text */
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

h1 {
    font-size: 3.5em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.5em;
}

p {
    font-weight: 300;
    margin-bottom: 15px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 1s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.5s; }
.fade-in.delay-2 { animation-delay: 1s; }
.fade-in.delay-3 { animation-delay: 1.5s; }

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up.delay-1 { transition-delay: 0.2s; }
.slide-up.delay-2 { transition-delay: 0.4s; }

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1542435503-91420b99696f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTMzNXwwfDF8c2VhcmNofDE3NXx8Z2xvYmFsJTIwbmV3c3xlbnwwfHx8fDE3MDcxMzcwNjl8MA&ixlib=rb-4.0.3&q=80&w=1080') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,153,0,0.15) 0%, transparent 70%);
    opacity: 0.7;
    z-index: 1;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.5em;
    margin-bottom: 10px;
    color: #FF9900; /* GetClips365 accent color */
    letter-spacing: -2px;
}

.hero-section .tagline {
    font-size: 1.8em;
    font-weight: 400;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.hero-section .description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.primary-btn {
    background-color: #FF9900; /* Accent color */
    color: #1a1a1a;
    border: none;
    box-shadow: 0 8px 15px rgba(255,153,0,0.3);
}

.primary-btn:hover {
    background-color: #ffb340;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255,153,0,0.4);
}

/* Section Styling */
.mission-section, .socials-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* For animation purposes */
}

.mission-section {
    background-color: #1a1a1a;
}

.socials-section {
    background-color: #0d0d0d;
    padding-bottom: 100px; /* More space for footer */
}

.section-title {
    margin-bottom: 40px;
    font-size: 3em;
    color: #FF9900;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15em;
    color: #c0c0c0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between icons */
    margin-top: 50px;
}

.social-icon {
    color: #e0e0e0;
    font-size: 4em; /* Large icons */
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2em; /* For the text */
    font-weight: 600;
}

.social-icon i {
    font-size: 3.5em; /* Icon size */
    margin-bottom: 10px;
}


.social-icon:hover {
    transform: translateY(-8px) scale(1.05);
}

.social-icon.instagram:hover { color: #E4405F; }
.social-icon.youtube:hover { color: #FF0000; }
.social-icon.tiktok:hover { color: #69C9D0; } /* TikTok's main brand color */


/* Footer */
.footer {
    background-color: #000000;
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    border-top: 1px solid #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3.2em;
    }
    .hero-section .tagline {
        font-size: 1.4em;
    }
    h2 {
        font-size: 2em;
    }
    .social-links {
        flex-direction: column;
        gap: 30px;
    }
    .social-icon {
        font-size: 1em;
    }
    .social-icon i {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section .tagline {
        font-size: 1.1em;
    }
    .hero-section .description {
        font-size: 0.9em;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .section-title {
        font-size: 1.8em;
    }
    .section-text {
        font-size: 1em;
    }
}