/* assets/home.css */

body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Updated font */
    background-color: #fafafa;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem; /* Increased padding on left and right */
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 1rem; /* Added space from the top of the page */
    z-index: 1000;
    border-radius: 12px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    margin-top: 1rem; /* Added margin for spacing */
}

.navbar:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Enhanced hover effect */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 0.75rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: lowercase;
}

.navbar-right a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.125rem; /* Increased font size */
    transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease; /* Added transform animation */
}

.navbar-right a:hover {
    color: #007bff;
    transform: scale(1.1) rotate(1deg); /* Slight zoom and rotation effect */
    letter-spacing: 0.5px; /* Subtle letter spacing on hover */
}

.navbar-right a.active {
    color: #007bff; /* Highlight color */
    font-size: 1.25rem; /* Make the active link slightly bigger */
    font-weight: bold; /* Make it bold */
    border-bottom: 2px solid #007bff; /* Add an underline to indicate the active tab */
    transition: all 0.3s ease; /* Smooth transition for the active state */
}

main {
    padding: 2rem;
}

.placeholder {
    height: 400px;
    background: #eaeaea;
    border: 2px dashed #ccc;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.25rem;
}


/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    min-height: 150px;
  }

  .footer-left {
    flex: 1;
    text-align: left;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-left h2 {
    margin: 0;
    font-size: 2.5rem;
  }

  .footer-left .footer-subtext {
    font-size: 0.9rem;
    margin-top: 5px;
  }

  .footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-right a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-right a i {
    margin-right: 15px;
  }

  .footer-right a:hover {
    text-decoration: underline;
  }

  #copyright {
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: left;
  }

  /* General Styles */


/* Team Section */
.team-section {
    padding: 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.team-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #777;
}

.discord-username {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}


/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 members per row */
    gap: 2rem;
    justify-items: center;
    padding: 0 1rem;
}

/* Team Member Card */
.team-member {
    width: 100%;
    max-width: 360px; /* Slightly bigger cards */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Profile Picture */
.team-pfp {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid #007bff;
}

/* Team Member Info */
.team-member h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #333;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    margin: 0.25rem 0;
}

/* Social Media Icons */
.social-media {
    margin-top: 1rem;
}

.social-media a {
    margin: 0 0.5rem;
    color: #555;
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 per row on phones */
    }
}
