.button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin: 10px 0;
}

.button:hover {
  background-color: #0056b3;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f8f9fa;
}

tr:hover {
  background-color: #f5f5f5;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.field input[type="text"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.error-messages {
  color: #dc3545;
  padding: 10px;
  border: 1px solid #dc3545;
  border-radius: 4px;
  margin-bottom: 20px;
}

.notice {
  color: #28a745;
  padding: 10px;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin-bottom: 20px;
}

.alert {
  color: #721c24;
  padding: 10px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 20px;
} 
body {
  font-family: 'Merriweather Sans', sans-serif;
}

.auth-container {
  padding: 2rem;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .auth-container {
    max-width: 480px;
  }
}

.auth-container h1 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
  font-weight: 700;
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather Sans', sans-serif;
}

.field input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Merriweather Sans', sans-serif;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-button {
  width: 100%;
  padding: 1rem;
  background-color: #00BFA5;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 500;
}

.primary-button:hover {
  background-color: #00A895;
}

.auth-links {
  margin-top: 1.5rem;
  text-align: center;
  font-family: 'Merriweather Sans', sans-serif;
}

.auth-links a {
  color: #00BFA5;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

/* Adaugă font-family pentru orice text care ar putea fi adăugat ulterior */
* {
  font-family: 'Merriweather Sans', sans-serif;
}

.remember-me input[type="checkbox"] {
  width: auto;
}

.remember-me label {
  margin: 0;
}

.error-messages {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.error-messages h2 {
  font-size: 1rem;
  color: #dc3545;
  margin-bottom: 0.5rem;
}

.error-messages ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.error-messages li {
  color: #dc3545;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.field_with_errors input {
  border-color: #dc3545;
} 
.college-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
}

.field input[type="text"],
.field input[type="email"],
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background: white;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.dropdown-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.upload-field {
  margin-top: 2rem;
}

.upload-box {
  border: 2px dashed #ddd;
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.upload-box:hover {
  border-color: #00BFA5;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-text {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
}

.upload-limit {
  display: block;
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.5rem;
}

.primary-button {
  background: #00BFA5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  margin-top: 2rem;
}

.primary-button:hover {
  background: #00A895;
}

.error-messages {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.error-messages h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.error-messages ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.error-messages li {
  font-size: 0.875rem;
} 
.college-header {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  color: white;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #2a7f7f; /* Culoarea de fundal */
  padding: 20px 10px;
  font-size: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  color: black; /* Culoarea textului */
}

.contact-item i {
  margin-right: 8px;
  font-size: 1.5em; /* Dimensiunea iconiței */
}

.contact-item a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.report-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.report-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #138b83;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.report-button:hover {
  background-color: #0056b3;
}

.college-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
}

.college-title {
  position: relative;
  padding: 40px 20px;
  z-index: 1;
}

.college-title h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 600;
}

.college-actions {
  padding: 20px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
}

.action-button.primary {
  background-color: #00bfa5;
  color: white;
}

.action-button.secondary {
  background-color: #ffa000;
  color: white;
}

.college-content {
  padding: 20px;
}

.specializations {
  margin-bottom: 30px;
}

.specializations h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.specialization-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specialization-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #333;
}

.specialization-list i {
  color: #00bfa5;
  font-size: 0.8rem;
}

.description h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.description-content {
  color: #666;
  line-height: 1.6;
}

/* Adaugă media queries pentru desktop */
@media (min-width: 768px) {
  .college-actions {
    flex-direction: row;
    justify-content: center;
  }

  .action-button {
    width: auto;
    padding: 15px 30px;
  }
}

@media (max-width: 765px) {
  .contact-info {
    flex-direction: column;
  }

  .contact-item {
    margin: 0.5em 0; /* Adăugăm 1em sus și jos, rezultând în 2em între elemente */
  }
}

.university-info {
  margin-bottom: 30px;
}

.university-card {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.university-card:hover {
  transform: translateY(-2px);
}

.university-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.university-details {
  flex: 1;
}

.university-details h3 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 1.2rem;
}

.university-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.university-link {
  text-decoration: none;
  display: block;
}
.colleges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.college-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.college-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.college-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.college-name {
  padding: 15px;
  text-align: center;
  margin: 0;
  font-size: 18px;
  color: #333;
}

@media (max-width: 768px) {
  .colleges-grid {
    grid-template-columns: 1fr;
  }

}

.search-section {
  padding: 20px;
}

.search-box { 
  margin: 0 auto 20px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #138B83;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

.filter-sort-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.filter-button,
.sort-button {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.filter-button {
  background-color: #138B83;
  color: white;
}

.sort-button {
  background-color: #B4E3D4;
  color: #333;
}

.filter-button:hover,
.sort-button:hover {
  opacity: 0.9;
}

/* Asigură-te că ai inclus Font Awesome pentru iconițe */ 
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  /* width: 100%; */
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: #138b83;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  align-self: flex-start;
}

.submit-button:hover {
  background-color: #0056b3;
}

/* Stiluri pentru mesajele de eroare/succes */
.flash-message {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.flash-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.close-sidebar {
  background: none;
  border: none;
  cursor: pointer;
}

.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.filter-sidebar.active {
  left: 0;
}

.filter-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.filter-form {
  padding: 20px;
}

.filter-section {
  margin-bottom: 20px;
  width: 100%;
}

.filter-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #666;
}

.filter-select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.filter-submit {
  width: 100%;
  padding: 12px;
  background: #77C4A3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.filter-submit:hover {
  background: #5fb38e;
} 
.home-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-section {
  padding: 2rem 1rem;
}

.hero-section p {
  font-weight: 300;
}

.hero-section h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  background-color: #00bfa5;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 1.25rem;
  color: #020202;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00000030;
}

.about-section,
.featured-colleges,
.partners-section {
  margin-bottom: 3rem;
}

.colleges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.college-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.college-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.college-card h3 {
  padding: 1rem;
  margin: 0;
  font-size: 1.125rem;
}

.college-link {
  display: block;
  padding: 1rem;
  color: #00bfa5;
  text-decoration: none;
}

@media (min-width: 768px) {
  .colleges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .home-container {
    max-width: 1200px;
  }

  .colleges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-image {
  background-image: url(/assets/logo_text.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px; /* Poți ajusta înălțimea după preferințe */
}

.justified-text {
  text-align: justify;
}

.about-header {
  font-size: 1.75rem;
}

.about-paragraph {
  font-weight: 300;
  text-align: justify;
}

.underlined {
  position: relative;
  color: #138b83;
}

.underlined::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #138b83;
}
@media screen and (max-width: 955px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 956px) {
  .hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-section {
    display: flex;
    flex-direction: row-reverse;
    padding: 2rem 0;
  }

  .about-image {
    margin-right: 2rem;
  }

  .cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stats-grid {
    padding: 2rem 0;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content {
    padding-right: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #138b83;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #0f7269;
  }
}
/* Navbar Styles */
.main-nav {
  background-color: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 0.5rem;
  font-family: "Hanken Grotesk", serif;
  color: #131a44;
  text-decoration: none;
}

.mobile-menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Footer Styles */
.main-footer {
  background-color: #138b83;
  color: white;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

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

.footer-section {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

.contact-button {
  display: inline-block;
  background-color: white;
  color: #00bfa5 !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-weight: 500;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

/* Common Button Styles */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.button-primary {
  background-color: #00bfa5;
  color: white;
}

.button-primary:hover {
  background-color: #00a895;
}

.button-outline {
  border: 2px solid #00bfa5;
  color: #00bfa5;
}

.button-outline:hover {
  background-color: #00bfa5;
  color: white;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  gap: 1rem;
}

.nav-links li a:hover {
  background-color: #e6f7f5;
}

.nav-links li a.active {
  background-color: #e6f7f5;
  color: #138b83;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-section {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  margin: 1rem 0;
}

.admin-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  padding: 0 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-section .menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Iconițe pentru meniu */
.menu-icon {
  width: 20px;
  height: 20px;
  color: #666;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-button span {
  transition: all 0.3s ease-in-out;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.menu-active {
  overflow: hidden;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Restul stilurilor rămân la fel */

main {
  margin-left: 250px; /* lățimea sidebar-ului */
  padding: 2rem;
  padding-top: 70px; /* pentru a lăsa spațiu pentru header */
}

.text-green {
  color: #00c4b0;
}

#nav-links-desktop {
    display: none;
  }

/* Desktop styles */
@media (min-width: 905px) {
  .mobile-menu-button {
    display: none;
  }


#nav-links-desktop {
    display: flex;
  }

  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
  }

  .nav-links li a {
    padding: 0px 10px;
    background-color: transparent;
  }

  .nav-links li a.active, .nav-links li a:hover {
    padding-bottom: 5px;
    background-color: transparent;
    border-bottom: 2px solid #138B83;
  }
}
.mission-container {
  padding: 20px;
  border-radius: 8px;

}

.mission-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.mission-list {
  list-style-type: none;
  padding: 0;
}

.mission-item {
  font-size: 1.2em;
  color: #555;
  margin: 10px 30px;
  display: flex;
  align-items: center;
}

.mission-item i {
  color: #4CAF50;
  margin-right: 10px;
} 
.settings-container {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .settings-container {
    grid-template-columns: 1fr;
  }
}

.settings-section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-section h2 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.field input:focus {
  outline: none;
  border-color: #00BFA5;
  box-shadow: 0 0 0 2px rgba(0,191,165,0.1);
}

.actions {
  margin-top: 1.5rem;
}

.primary-button {
  background: #00BFA5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.primary-button:hover {
  background: #00A895;
}

.danger-zone {
  border: 1px solid #ffebee;
  background-color: #fff5f5;
}

.danger-zone h2 {
  color: #dc3545;
}

.warning-text {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.danger-button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.danger-button:hover {
  background: #c82333;
} 
.sidebar {
  width: 250px;
  background: white;
  border-right: 1px solid #eee;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 70px; /* pentru a lăsa spațiu pentru header */
}

.sidebar-content {
  padding: 1.5rem;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-section h3 {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.sidebar-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sidebar-link:hover {
  background: #f5f5f5;
  color: #00BFA5;
}

.sidebar-link.active {
  background: #e6f7f5;
  color: #00BFA5;
}

.sidebar-link i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.sidebar-link span {
  font-size: 0.9rem;
} 
.sort-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.sort-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sort-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.sort-sidebar.active {
  right: 0;
}

.sort-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.sort-header h2 {
  margin: 0;
  font-size: 24px;
}

.sort-options {
  padding: 20px;
}

.sort-option {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.sort-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.sort-option i {
  width: 20px;
  color: #77C4A3;
}

.sort-radio {
  display: none;
}

.sort-radio:checked + label {
  color: #77C4A3;
  font-weight: 500;
}

.sort-submit {
  margin: 20px;
  width: calc(100% - 40px);
  padding: 12px;
  background: #77C4A3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.sort-submit:hover {
  background: #5fb38e;
} 
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.form-container .breadcrumbs {
  margin-bottom: 20px;
  color: #666;
}

.form-container .form-group {
  margin-bottom: 20px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-container .form-group .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-container .upload-zone {
  border: 2px dashed #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}

.form-container .upload-zone input[type="file"] {
  display: none;
}

.form-container .upload-zone p {
  margin: 10px 0;
}

.form-container .upload-zone small {
  color: #666;
}

.form-container .btn-primary {
  width: 100%;
  padding: 12px;
  background-color: #00b894;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-container .btn-primary:hover {
  background-color: #009b7b;
}

/* Stiluri pentru pagina de afișare */
.university-header {
  position: relative;
  margin-bottom: 30px;
}

.university-header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.university-header h1 {
  margin: 20px 0;
  font-size: 2em;
  color: #333;
}

.university-contact {
  margin: 15px 0;
}

.university-contact a {
  margin-right: 15px;
  color: #00b894;
  text-decoration: none;
}

.university-contact i {
  font-size: 1.2em;
}

.admin-actions {
  margin: 20px 0;
}

.admin-actions .btn {
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-primary {
  background-color: #00b894;
  color: white;
}

.btn-secondary {
  background-color: #ffa500;
  color: white;
}

.colleges-section {
  margin: 30px 0;
}

.colleges-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.university-description {
  margin: 30px 0;
  padding: 20px;
  border-radius: 8px;
}

.university-description h2 {
  margin-bottom: 15px;
  color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
  .colleges-grid {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    display: flex;
    flex-direction: column;
  }

  .admin-actions .btn {
    margin-bottom: 10px;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

body {
  font-family: "Hanken Grotesk", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Hanken Grotesk", serif;
}

.nav-links {
  font-family: "Hanken Grotesk", serif;
}

.footer-content {
  font-family: "Hanken Grotesk", serif;
}

p {
  font-weight: 300;
}
