/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Home page styles */
.home {
    padding: 2rem 0;
}

.project-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.project-window {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    height: 400px; /* Set a fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.project-window:hover {
    transform: translateY(-5px);
}

.project-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.project-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #003f7d;
    font-size: 2rem;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.carousel-button:hover {
    color: #002a54;
    transform: scale(1.1);
}

.btn-primary {
    background-color: #003f7d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #002a54;
    transform: translateY(-2px);
}

/* Project details */
#projectName {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #003f7d;
}

#projectDescription {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow-y: auto; /* Add scrollbar if content exceeds available space */
}
.genius-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

.genius-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .genius-section {
    background-color: #f0f8ff;  /* Light blue background */
    border: 2px solid #003f7d;  /* Border color matching the theme */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 63, 125, 0.1);
    margin-bottom: 2rem;
  }
  .genius-button {
    background-color: #003f7d;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .genius-section h3 {
    color: #003f7d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  
  .genius-section h3 svg {
    margin-right: 0.5rem;
  }
  
/* Responsive design */
@media (max-width: 768px) {
    .project-carousel {
        flex-direction: column;
    }

    .project-window {
        width: 100%;
        max-width: 300px;
        height: auto; /* Allow height to adjust on mobile */
        min-height: 400px; /* Set a minimum height for consistency */
    }

    .carousel-button {
        font-size: 1.5rem;
    }
}