/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

:root {
    --primary-color: #000000;
    --secondary-color: #fafafa;
    --accent-color: #ff4d7a;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --border-color: #0001;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--secondary-color);
    line-height: 1.6;
    font-size: 16px;
}

/* Font Awesome integration */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    display: none;
}
/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* ============================================
   LINK STYLES
   ============================================ */

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   LIST STYLES
   ============================================ */

ul, ol {
    list-style: none;
}
