/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

/* Custom UFO Cursor */
.cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor::before {
    content: '🛸';
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    animation: ufo-float 2s ease-in-out infinite;
}

@keyframes ufo-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.cursor.hover {
    transform: scale(1.5);
}

.cursor.hover::before {
    animation: ufo-hover 0.5s ease-in-out infinite;
}

@keyframes ufo-hover {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-5px) rotate(10deg) scale(1.2); }
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffffff, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 60px, #ffffff, transparent),
        radial-gradient(2px 2px at 240px 90px, #ffffff, transparent),
        radial-gradient(1px 1px at 280px 20px, #ffffff, transparent),
        radial-gradient(2px 2px at 320px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 360px 40px, #ffffff, transparent),
        radial-gradient(2px 2px at 400px 80px, #ffffff, transparent),
        radial-gradient(1px 1px at 440px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 480px 60px, #ffffff, transparent),
        radial-gradient(1px 1px at 520px 90px, #ffffff, transparent),
        radial-gradient(2px 2px at 560px 20px, #ffffff, transparent),
        radial-gradient(1px 1px at 600px 70px, #ffffff, transparent),
        radial-gradient(2px 2px at 640px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 680px 80px, #ffffff, transparent),
        radial-gradient(2px 2px at 720px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 760px 60px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 800px 100px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    padding: 2rem;
    position: relative;
}

.company-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.company-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-stack {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Button styles */
.hub-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 0;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    background: #000000;
    box-shadow: 0 0 20px #ffffff;
}

.hub-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 0, 150, 0.3) 25%,
            rgba(0, 255, 255, 0.3) 50%,
            rgba(255, 255, 0, 0.3) 75%,
            rgba(255, 255, 255, 0.1) 100%
        ),
        linear-gradient(135deg,
            rgba(128, 0, 255, 0.2) 0%,
            rgba(0, 255, 0, 0.2) 25%,
            rgba(255, 0, 0, 0.2) 50%,
            rgba(0, 255, 255, 0.2) 75%,
            rgba(128, 0, 255, 0.2) 100%
        ),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%;
}

.hub-button:hover::before {
    opacity: 1;
    background-position: 100% 100%, 100% 100%, 0% 0%;
    transition: opacity 0.4s ease, background-position 2s ease-in-out;
}

.hub-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 0, 150, 0.2),
        rgba(0, 255, 255, 0.2),
        rgba(255, 255, 0, 0.2),
        rgba(0, 255, 0, 0.2),
        rgba(255, 0, 0, 0.2),
        rgba(128, 0, 255, 0.2)
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.hub-button:hover::after {
    width: 300px;
    height: 300px;
}

.hub-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 30px #ffffff;
}

.hub-button:active {
    transform: scale(0.98) translateY(0px);
    transition: all 0.1s ease;
}

.button-content {
    text-align: center;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.hub-button:hover .button-content {
    transform: scale(1.1);
}

.button-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Courier New', 'Monaco', monospace;
    margin: 0;
    text-shadow: 1px 1px 0px #000000;
    transition: all 0.3s ease;
}

.hub-button:hover .button-content h2 {
    text-shadow: 2px 2px 0px #000000, 0 0 20px #ffffff;
}

/* Specific button colors - All Black with White */
.projects-btn {
    background: #000000;
    border-color: #ffffff;
}

.projects-btn:hover {
    border-color: #ffffff;
    background: #000000;
}

.about-btn {
    background: #000000;
    border-color: #ffffff;
}

.about-btn:hover {
    border-color: #ffffff;
    background: #000000;
}

.inquiries-btn {
    background: #000000;
    border-color: #ffffff;
}

.inquiries-btn:hover {
    border-color: #ffffff;
    background: #000000;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    border: 2px solid #ffffff;
    background: #000000;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: footer-shimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footer-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .company-title {
        font-size: 2.8rem;
    }
    
    .hub-button {
        padding: 1.5rem;
    }
    
    .button-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 2.2rem;
    }
    
    .company-subtitle {
        font-size: 1.1rem;
    }
    
    .hub-button {
        padding: 1.25rem;
    }
    
    .button-content h2 {
        font-size: 1.4rem;
    }
} 