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

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
    background-color: #000000;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Logo */
.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: pulse 2s infinite ease-in-out;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Header */
.header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #ff7e00, #ff2a6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 122, 0, 0.3);
}

h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffe100;
    /* Removed italic style as requested */
}

.slogan {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Colorful buttons as requested */
.website {
    background: linear-gradient(135deg, #ff7e00 0%, #ff5f00 100%);
}

.instagram {
    background: linear-gradient(135deg, #ff2a6d 0%, #d527b7 100%);
}

.presentation {
    background: linear-gradient(135deg, #ffe100 0%, #ffb800 100%);
}
.presentation span, .presentation small {
    color: #000; /* Dark text for better contrast on yellow */
}

.work {
    background: linear-gradient(135deg, #00a1ff 0%, #796eff 100%);
}

/* Brighter hover effects as requested */
.link-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.website:hover {
    background: linear-gradient(135deg, #ff5f00 0%, #ff9500 100%);
}

.instagram:hover {
    background: linear-gradient(135deg, #d527b7 0%, #ff2a6d 100%);
}

.presentation:hover {
    background: linear-gradient(135deg, #ffb800 0%, #ffe100 100%);
}

.work:hover {
    background: linear-gradient(135deg, #796eff 0%, #00a1ff 100%);
}

.link-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9); /* Consistent icon color */
}

.presentation i {
    color: rgba(0, 0, 0, 0.9); /* Dark icon for better contrast on yellow */
}

.link-card span {
    font-size: 1.1rem;
    font-weight: 600;
}

.link-card small {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 3px;
}

/* Add glowing effect on hover */
.link-card:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.link-card:hover:after {
    opacity: 1;
    transform: scale(1);
}

/* Footer */
.footer {
    margin-top: auto;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 10px;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 0.9rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
}
