/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #121212;
    overflow-x: hidden;
}

header {
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

header .hero {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

header .btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: #121212;
    background-color: orange;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    animation: fadeInUp 1.5s ease;
}

header .btn:hover {
    background-color: #ff4500;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #181818;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    background: #242424;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    animation: fadeIn 2s ease;
}

/* Feature Cards Hover Effect */
.feature-item {
    background: #242424;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: #2a2a2a;
}

.feature-item h3 {
    color: orange;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: #ff4500;
}

.feature-item p {
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: #f0f0f0;
}


/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(45deg, #181818, #242424);
}

.contact a.btn {
    display: inline-block;
    margin: 10px 0;
    color: white;
    background: orange;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.contact a.btn:hover {
    background: #ff4500;
}

.minecraft-ip {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #121212;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

}

/* Scroll-Animation */
.scroll-effect {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.scroll-effect.scrolled {
    opacity: 1;
    transform: translateY(0);
}
