/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    background: #FFC627;
}

/* Landing Page */
.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #FFC627;
}

.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Moustache SVG */
.moustache {
    width: 200px;
    margin: 0 auto 3rem;
    animation: float 3s ease-in-out infinite;
}

.moustache img {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.moustache svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Statement Text */
.statement {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 3rem;
    text-transform: none;
    letter-spacing: -1px;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.btn-movember {
    background: #000;
    color: #FFC627;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-movember:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-social {
    background: transparent;
    color: #000;
    border: 3px solid #000;
}

.btn-social:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-width: 3px;
}

/* Brand */
.brand {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-icon {
    color: #000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .moustache {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .landing {
        padding: 1.5rem;
    }
    
    .moustache {
        width: 150px;
        margin-bottom: 2rem;
    }
    
    .statement {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }
    
    .btn {
        min-width: 180px;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .buttons {
        margin-bottom: 2rem;
    }
}