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

/* CSS Variables */
:root {
    --font-noto-sans: 'Noto Sans', sans-serif;
    --font-noto-sans-mono: 'Noto Sans Mono', monospace;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-300: #d1d5db;
    --white: #ffffff;
}

body {
    font-family: var(--font-noto-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
}

.container {
    min-height: 100vh;
    padding: 3rem 1rem;
}

.content {
    max-width: 768px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header Section */
.header-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

.description {
    text-align: left;
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Services Sections */
.services-section,
.past-services-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.past-services-section {
    padding-top: 1rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 3rem 2rem;
    }
}

/* Service Links */
.service-link {
    transform: translateY(0);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    background-color: var(--gray-700);
    text-decoration: none;
    gap: 0.5rem;
}

.service-link:hover {
    background-color: var(--gray-600);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-link-past {
    transform: translateY(0);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-600);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-300);
    background-color: transparent;
    text-decoration: none;
    gap: 0.5rem;
}

.service-link-past:hover {
    background-color: var(--gray-700);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Icon Styles */
.service-link i,
.service-link-past i {
    font-size: 1.25rem;
}

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

/* Custom icon styles for specific services */
.fab.fa-bluesky::before {
    content: "🦋";
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-style: normal;
}

.fas.fa-z::before {
    content: "Z";
    font-family: var(--font-noto-sans);
    font-weight: 700;
    font-style: normal;
}

.fas.fa-fire::before {
    content: "🔥";
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-style: normal;
}
