@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

body {
    font-family: 'Comic Relief', sans-serif;
    background-color: #181a1b;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

hr {
    width: 75%;
    height: 1px;
    background-color: #ccc;
    border: none;
    margin: 20px 0;
}

a {
    color: #4CAF50;
    text-decoration: none;
    display: inline-block;
    transform: scale(1);
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #81c784;
    transform: scale(1.05);
}

.hero-container {
    width: 100%;
    height: 75vh;
}

.hero {
    width: 100%;
    height: 100%;
    background-image: url('./assets/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero p,
.hero h1,
.hero-buttons {
    position: relative;
    z-index: 2;
}

.hero p,
.hero h1 {
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.hero p {
    font-size: 1.2rem;
}

.hero h1 {
    font-size: 3rem;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons a {
    text-decoration: none;
    color: #f0f0f0;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.hero-buttons a[href*="github"] {
    background: linear-gradient(135deg, #24292e 0%, #1a1e22 100%);
    border: 2px solid #444d56;
}

.hero-buttons a[href*="github"]:hover {
    background: linear-gradient(135deg, #2f363d 0%, #24292e 100%);
    border-color: #586069;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons a[href*="oauth2/authorize"] {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border: 2px solid #4752c4;
}

.hero-buttons a[href*="oauth2/authorize"]:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    border-color: #3c45a5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(71, 82, 196, 0.4);
}

.hero-buttons a[href*="discord.gg"] {
    background: linear-gradient(135deg, #57f287 0%, #3ba55c 100%);
    border: 2px solid #3ba55c;
    color: #1e1e1e;
}

.hero-buttons a[href*="discord.gg"]:hover {
    background: linear-gradient(135deg, #3ba55c 0%, #2d7d32 100%);
    border-color: #2d7d32;
    color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 165, 92, 0.4);
}

.hero-buttons a img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-buttons a:hover img {
    transform: scale(1.1);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.command-card {
    background-color: #2d3748;
    border: 2px solid #4a5568;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.command-card:hover {
    transform: translateY(-2px);
    border-color: #007bff;
}

.command-card h3 {
    color: #4CAF50;
    margin: 0 0 10px 0;
    font-family: 'Courier New', monospace;
}

.command-card p {
    margin: 0;
    line-height: 1.5;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.screenshot {
    max-width: 500px;
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background: #222;
    display: block;
    margin: 0 auto;
}

/* Status Section */
.status-container {
    background-color: #2d3748;
    border: 2px solid #4a5568;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: gray;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background-color: #4CAF50;
}

.status-dot.offline {
    background-color: #f44336;
    animation: none;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    font-weight: bold;
    color: #a0aec0;
}

#open-form-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#open-form-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.footer {
    text-align: center;
    background-color: #161e2b;
    width: 100%;
    margin-top: 50px;
    padding: 20px;
}



@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.section ul {
    text-align: left;
    max-width: 800px;
    margin: 20px 0;
}

.section ul li {
    margin: 10px 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
    
    .content {
        padding: 0 10px;
    }
}