/* Base Styles */
:root {
    --primary-color: #111111;
    --secondary-color: #333333;
    --accent-color: #e6e6e6;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #111111;
    --transition-speed: 0.4s;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-main: 'Poppins', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo Animation */
header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-container {
    position: relative;
    margin-bottom: 20px;
}

.logo {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-headings);
    display: flex;
    justify-content: center;
    letter-spacing: -1px;
}

.logo-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.logo-letter:nth-child(1) { animation-delay: 0.1s; color: var(--primary-color); }
.logo-letter:nth-child(2) { animation-delay: 0.2s; color: var(--primary-color); }
.logo-letter:nth-child(3) { animation-delay: 0.3s; color: var(--primary-color); }
.logo-letter:nth-child(4) { animation-delay: 0.4s; color: var(--primary-color); }
.logo-letter:nth-child(5) { animation-delay: 0.5s; color: var(--primary-color); }
.logo-letter:nth-child(6) { animation-delay: 0.6s; color: var(--primary-color); }
.logo-letter:nth-child(7) { animation-delay: 0.7s; color: var(--primary-color); }
.logo-letter:nth-child(8) { animation-delay: 0.8s; color: var(--primary-color); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1920x1080/?minimalist,monochrome') no-repeat center center/cover;
    opacity: 0.08;
    z-index: -1;
    animation: slow-pan 30s ease-in-out infinite alternate;
}

@keyframes slow-pan {
    0% {
        transform: scale(1.1) translate(0%, 0%);
    }
    100% {
        transform: scale(1.15) translate(2%, 2%);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.5s;
}

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -2px;
    font-family: var(--font-headings);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    transition: all var(--transition-speed);
    z-index: -1;
}

.cta-button a:hover {
    color: var(--dark-color);
}

.cta-button a:hover::after {
    height: 100%;
}

/* Social Media Section */
.social-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--light-color);
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    background: white;
    border-radius: 0;
    padding: 40px 30px;
    transition: all var(--transition-speed);
    box-shadow: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height var(--transition-speed) ease;
    z-index: 0;
}

.youtube::before { background-color: rgba(255, 0, 0, 0.03); }
.tiktok::before { background-color: rgba(0, 0, 0, 0.03); }
.instagram::before { background-color: rgba(138, 58, 185, 0.03); }

.social-card:hover::before {
    height: 100%;
}

.social-card:nth-child(1) { animation-delay: 0.3s; }
.social-card:nth-child(2) { animation-delay: 0.5s; }
.social-card:nth-child(3) { animation-delay: 0.7s; }

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.youtube .social-icon { color: #FF0000; }
.tiktok .social-icon { color: #000000; }
.instagram .social-icon { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-family: var(--font-headings);
}

.social-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.social-link {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all var(--transition-speed);
    border: 1px solid currentColor;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background-color: currentColor;
    transform: skew(-20deg);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
}

.social-link:hover::after {
    width: 120%;
}

.youtube .social-link { color: #FF0000; }
.tiktok .social-link { color: #000000; }
.instagram .social-link { color: #e1306c; }

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    margin-top: 0;
    color: var(--dark-color);
    background-color: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .social-card {
        padding: 30px 20px;
    }
    
    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 100vh;
        padding-top: 100px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .social-card {
        padding: 25px 15px;
    }
    
    .cta-button a, .social-link {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .social-section {
        padding: 80px 0;
    }
}

