/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-size: cover;
    background-position: center;
}

.cta-button {
    background: #dc2626;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Section Titles */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.feature-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Game Screenshots */
.game-screenshot {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.game-screenshot:hover {
    transform: scale(1.03);
}

/* Devlog Posts */
.devlog-post {
    background: #374151;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.devlog-post h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-date {
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* Team Members */
.team-member {
    background: #374151;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.member-photo {
    height: 8rem;
    width: 8rem;
    background: #4b5563;
    border-radius: 9999px;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.role {
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* Roadmap */
.roadmap-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.roadmap-item {
    background: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    margin: 0.5rem;
}

.roadmap-item:not(:last-child)::after {
    content: "→";
    margin-left: 1rem;
    color: #6b7280;
}

/* Footer */
.site-footer {
    padding: 2rem 0;
    text-align: center;
    color: #6b7280;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .roadmap-item:not(:last-child)::after {
        content: "";
        margin: 0;
    }
    
    .roadmap-container {
        flex-direction: column;
    }
}

/* Contact Section Styles */
.contact-info-item {
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

/* Form Styles */
#contactForm input,
#contactForm textarea {
    transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Success Message */
.form-success {
    display: none;
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

/* Navigation Styles */
.nav-link {
    @apply px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-800 transition;
}

.nav-link.active {
    @apply text-white bg-gray-800;
}

/* .mobile-nav-link {
    @apply block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-800 transition;
} */

.mobile-nav-link {
  display: block;
  font-style: inherit;
  padding: 20px;
  text-align: center;
}

/* Gallery Styles */
.gallery-image {
    @apply rounded-lg shadow-xl transition transform hover:scale-105 cursor-zoom-in;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Lightbox Overrides */
.lb-outerContainer {
    background: transparent !important;
}

.lb-dataContainer {
    @apply bg-gray-900 bg-opacity-90 !important;
}

/* Team Social Links */
.social-links {
    @apply flex justify-center space-x-4;
}

.social-icon {
    @apply text-gray-400 hover:text-blue-400 transition;
    width: 24px;
    height: 24px;
}

/* Devlog Post Styles */
.prose {
    @apply text-gray-300;
}

.prose h2 {
    @apply text-2xl font-bold mt-8 mb-4 text-white;
}

.prose p {
    @apply mb-4;
}

.prose ul {
    @apply list-disc pl-6 mb-4;
}

.prose .lead {
    @apply text-xl text-gray-300 mb-6;
}

/* Devlog Card Styles */
.devlog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.devlog-card:hover {
    transform: translateY(-5px);
}

.devlog-card img {
    transition: transform 0.5s ease;
}

.devlog-card:hover img {
    transform: scale(1.05);
}

/* Active Navigation Link */
.nav-link.active,
.mobile-nav-link.active {
    @apply text-white bg-gray-800;
}

/* Tag Styles */
.tag {
    @apply text-xs bg-gray-700 text-gray-300 px-2 py-1 rounded;
}
