/*===== GOOGLE FONTS =====*/
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800&display=swap');

/*===== VARIABLES CSS =====*/
:root {
  /* الألوان */
  --primary-color: #53CF81;
  --primary-dark: #3AA869;
  --secondary-color: #121212;
  --dark-color: #1A1A1A;
  --card-color: #252525;
  --text-color: #E0E0E0;
  --text-light: #A0A0A0;
  --white-color: #FFFFFF;
  --border-color: #333333;
  
  /* الخطوط */
  --body-font: 'Tajawal', sans-serif;
  --big-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* المسافات */
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*===== BASE =====*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/*===== REUSABLE CSS CLASSES =====*/
.container {
  max-width: 1200px;
  margin-inline: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: var(--mb-1-5);
}

.section {
  padding: 5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: var(--mb-2);
  color: var(--white-color);
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--mb-2-5);
  font-size: var(--normal-font-size);
}

/*===== BUTTONS =====*/
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-5);
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button--primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.button--primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(83, 207, 129, 0.3);
}

.button--secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

/*===== HEADER & NAV =====*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.nav {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--white-color);
  font-size: var(--h3-font-size);
}

.logo__wrapper {
  display: flex;
  align-items: center;
  gap: var(--mb-0-5);
}

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* تصميم القائمة للموبايل */
.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--dark-color);
  padding: 6rem 2rem 3rem;
  transition: 0.4s;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  z-index: var(--z-fixed);
  overflow-y: auto;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--mb-2);
}

.nav__link {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  display: block;
  font-size: var(--h3-font-size);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
  background-color: rgba(83, 207, 129, 0.1);
}

.nav__link.active-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
  background: var(--card-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__close:hover {
  color: var(--primary-color);
  background: var(--border-color);
}

.nav__toggle {
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
  background: var(--card-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle:hover {
  color: var(--primary-color);
  background: var(--border-color);
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Overlay للخلفية عند فتح القائمة */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/*===== HOME SECTION =====*/
.home {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home__container {
  position: relative;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--mb-3);
}

.home__title {
  font-size: var(--big-font-size);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.home__title-gradient {
  background: linear-gradient(135deg, var(--primary-color), #67D49A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  font-size: var(--normal-font-size);
  max-width: 500px;
}

.home__buttons {
  display: flex;
  gap: var(--mb-1);
  margin-bottom: var(--mb-2-5);
  flex-wrap: wrap;
}

.home__social {
  display: flex;
  gap: var(--mb-1);
}

.home__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--card-color);
  color: var(--text-color);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.home__social-link:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.home__animation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  position: relative;
  width: 300px;
  height: 300px;
}

.logo__visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main__logo {
  width: 400px;
  height: 400px;
  filter: drop-shadow(0 0 30px rgba(83, 207, 129, 0.4));
  animation: float 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.logo__glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 207, 129, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.logo__particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.logo__particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.logo__particles span:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.logo__particles span:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.logo__particles span:nth-child(3) {
  top: 30%;
  left: 15%;
  animation-delay: 2s;
}

.logo__particles span:nth-child(4) {
  bottom: 40%;
  left: 25%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
}

/*===== ABOUT SECTION =====*/
.about__container {
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--mb-3);
}

.about__visual {
  display: flex;
  justify-content: center;
}

.profile__card {
  position: relative;
  width: 300px;
  height: 300px;
  background: var(--card-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.software__badges {
  position: relative;
  width: 100%;
  height: 100%;
}

.badge {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.1);
}

.badge.ae {
  background: linear-gradient(135deg, #8A2BE2, #4B0082);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.badge.ps {
  background: linear-gradient(135deg, #31A8FF, #0066CC);
  bottom: 30%;
  left: 15%;
  animation-delay: 1s;
}

.badge.ai {
  background: linear-gradient(135deg, #FF9A00, #FF5E00);
  top: 50%;
  right: 25%;
  animation-delay: 2s;
}

.badge.pr {
  background: linear-gradient(135deg, #9999FF, #6666CC);
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.badge i {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about__content {
  text-align: center;
}

.about__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  line-height: 1.8;
}

.about__features {
  display: grid;
  gap: var(--mb-1-5);
}

.feature__card {
  display: flex;
  align-items: flex-start;
  gap: var(--mb-1);
  padding: var(--mb-1-5);
  background: var(--card-color);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

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

.feature__icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature__content h3 {
  color: var(--white-color);
  margin-bottom: var(--mb-0-5);
  font-size: var(--h3-font-size);
}

.feature__content p {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

/*===== SKILLS SECTION =====*/
.skills__container {
  grid-template-columns: 1fr;
  gap: var(--mb-3);
}

.skills__content {
  background: var(--card-color);
  padding: var(--mb-2);
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 400px;
}

.skill__item {
  margin-bottom: var(--mb-2);
}

.skill__item:last-child {
  margin-bottom: 0;
}

.skill__header {
  display: flex;
  align-items: center;
  gap: var(--mb-1);
  margin-bottom: var(--mb-0-75);
}

.skill__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 1.2rem;
}

.skill__info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill__name {
  color: var(--white-color);
  font-weight: 600;
}

.skill__percentage {
  color: var(--primary-color);
  font-weight: 700;
}

.skill__bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.skill__progress {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

.skill__progress.ae {
  background: linear-gradient(90deg, #8A2BE2, #4B0082);
}

.skill__progress.ps {
  background: linear-gradient(90deg, #31A8FF, #0066CC);
}

.skill__progress.ai {
  background: linear-gradient(90deg, #FF9A00, #FF5E00);
}

.skill__progress.motion {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.software__showcase {
  display: grid;
  gap: var(--mb-1-5);
}

.software__card {
  background: var(--card-color);
  padding: var(--mb-2);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.software__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.software__card.ae {
  border-top: 4px solid #8A2BE2;
}

.software__card.ps {
  border-top: 4px solid #31A8FF;
}

.software__card.ai {
  border-top: 4px solid #FF9A00;
}

.card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  color: white;
  font-weight: 700;
}

.software__card.ae .card__icon {
  background: linear-gradient(135deg, #8A2BE2, #4B0082);
}

.software__card.ps .card__icon {
  background: linear-gradient(135deg, #31A8FF, #0066CC);
}

.software__card.ai .card__icon {
  background: linear-gradient(135deg, #FF9A00, #FF5E00);
}

.card__icon i {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.software__card h4 {
  color: var(--white-color);
  margin-bottom: var(--mb-0-5);
  font-size: var(--h3-font-size);
}

.software__card p {
  color: var(--text-light);
  margin-bottom: var(--mb-1);
  font-size: var(--small-font-size);
}

.card__features {
  text-align: right;
}

.card__features li {
  color: var(--text-light);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-25);
  position: relative;
  padding-right: var(--mb-1);
}

.card__features li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  right: 0;
}

/*===== CONTACT SECTION =====*/
.contact__container {
  max-width: 800px;
  margin: 0 auto;
}

.contact__info {
  text-align: center;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--mb-2);
  margin-bottom: var(--mb-3);
}

.contact__card {
  background: var(--card-color);
  padding: var(--mb-2);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.contact__card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.contact__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  color: var(--dark-color);
  font-size: 1.5rem;
}

.contact__content h3 {
  color: var(--white-color);
  margin-bottom: var(--mb-0-5);
  font-size: var(--h3-font-size);
}

.contact__content p {
  color: var(--text-light);
  margin-bottom: var(--mb-1);
}

.contact__link {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-25);
}

.contact__link:hover {
  color: var(--white-color);
}

.contact__social {
  display: flex;
  justify-content: center;
  gap: var(--mb-1-5);
  flex-wrap: wrap;
}

.social__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--mb-0-5);
  padding: var(--mb-1);
  background: var(--card-color);
  border-radius: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  min-width: 80px;
}

.social__link:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.social__link i {
  font-size: 1.5rem;
}

.social__link span {
  font-size: var(--small-font-size);
  font-weight: 500;
}

/*===== FOOTER =====*/
.footer {
  background: var(--dark-color);
  padding-top: var(--mb-3);
  border-top: 1px solid var(--border-color);
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--mb-2-5);
}

.footer__content {
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--mb-0-5);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
  font-weight: 700;
  font-size: var(--h3-font-size);
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-1-5);
}

.footer__title {
  color: var(--white-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
  position: relative;
  padding-bottom: var(--mb-0-5);
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--mb-0-75);
}

.footer__link {
  color: var(--text-light);
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.footer__link:hover {
  color: var(--primary-color);
  padding-right: var(--mb-0-5);
}

.footer__links li {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: var(--mb-0-5);
  padding: 0.25rem 0;
}

.footer__links li i {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  margin-top: var(--mb-3);
  padding: var(--mb-1-5) 0;
  text-align: center;
}

.footer__copy {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

/*===== SCROLL UP =====*/
.scrollup {
  position: fixed;
  bottom: -30%;
  right: var(--mb-1-5);
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  z-index: var(--z-tooltip);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(83, 207, 129, 0.3);
}

.scrollup:hover {
  background: var(--white-color);
  transform: translateY(-3px);
}

.scrollup.show-scroll {
  bottom: var(--mb-1-5);
}

/*===== MEDIA QUERIES =====*/

/* للأجهزة الصغيرة */
@media screen and (max-width: 320px) {
  .container {
    margin-inline: var(--mb-1);
  }
  
  .home__title {
    font-size: 2rem;
  }
  
  .home__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .button {
    width: 100%;
    justify-content: center;
  }
  
  .nav__menu {
    width: 100%;
    padding: 5rem 1rem 2rem;
  }
}

/* للأجهزة المتوسطة */
@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .skills__container {
    grid-template-columns: 1fr;
  }
  
  .home__content {
    text-align: center;
  }
  
  .home__description {
    margin-inline: auto;
  }
  
  .home__buttons {
    justify-content: center;
  }
  
  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .software__showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 767px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  
  .nav__toggle,
  .nav__close {
    display: none;
  }
  
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }
  
  .nav__list {
    flex-direction: row;
    gap: var(--mb-2);
  }
  
  .nav__link {
    padding: 0.5rem 1rem;
    font-size: var(--normal-font-size);
  }
  
  .nav__link.active-link::after {
    top: auto;
    bottom: -5px;
    right: 0;
    transform: none;
    width: 100%;
    height: 2px;
  }
  
  .home__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: right;
  }
  
  .home__content {
    text-align: right;
  }
  
  .home__description {
    margin-inline: 0;
  }
  
  .home__buttons {
    justify-content: flex-start;
  }
  
  .about__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: right;
  }
  
  .about__content {
    text-align: right;
  }
  
  .skills__container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    text-align: right;
  }
  
  .footer__content:first-child {
    text-align: right;
  }
  
  .footer__logo {
    justify-content: flex-start;
  }
  
  .contact__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* للأجهزة الكبيرة */
@media screen and (min-width: 992px) {
  .container {
    margin-inline: auto;
  }
  
  .section {
    padding: 7rem 0 2rem;
  }
  
  .home {
    min-height: 100vh;
  }
  
  .home__container {
    gap: var(--mb-5);
  }
  
  .about__container,
  .skills__container {
    gap: var(--mb-5);
  }
  
  .software__showcase {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1200px) {
  .big-font-size {
    font-size: 3rem;
  }
  
  .h1-font-size {
    font-size: 2.5rem;
  }
  
  .normal-font-size {
    font-size: 1.1rem;
  }
}



/*===== FOOTER CREDITS =====*/
.footer__credits {
    background: var(--card-color);
    padding: var(--mb-1) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.credits__content {
    text-align: center;
}

.credits__content p {
    color: var(--text-light);
    font-size: var(--small-font-size);
    margin: 0;
}

.credits__link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--mb-0-25);
}

.credits__link:hover {
    color: var(--white-color);
    transform: translateY(-2px);
}

.credits__link i {
    font-size: 0.9rem;
}