/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SF Pro', 'Poppins', sans-serif;
  color: #111212;
  background: #f3f3f5;
  overflow-x: hidden;
}

/* Links */
a {
  text-decoration: none;
}

/* Header */
header {
  background: #EFEFF5;
}


/* Hide hashtags on screens smaller than 768px */
@media (max-width: 768px) {
  .hashtags {
    display: none;
  }
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 44px 20%;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.madexchirag {
  background: linear-gradient(180deg, #464746, #111212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

header .madexchirag {
  font-size: clamp(1.4rem, 4vw, 24px);
}

.uiux-graphic {
  font-size: clamp(0.7rem, 2vw, 12px);
  color: #717172;
}

/* Hero Section */
.hero {
  background-color: #EEEEEE;
  padding: 80px 20%;
  text-align: left;
}

.hero .madexchirag {
  font-size: clamp(2rem, 8vw, 62px);
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 3.5vw, 16px);
  color: #717172;
  margin-top: 15px;
  line-height: 1.5;
}

/* Gallery */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 5%;
  background-color: #EFEFF5;
}

.gallery .item img,
.gallery .item video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Footer */
.footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 40px 5%;
  color: #717172;
}

.footer-logo img {
  width: 84px;
  height: auto;
  margin: 40px auto;
  display: block;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.social-icons img {
  width: 56px;
  height: 56px;
}

/* Scroll-up button */
html {
  scroll-behavior: smooth;
}

.scroll-up {
 position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #111212;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 24px;
  font-size: 20px;
  z-index: 1000;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 44px;
}

.scroll-up:hover {
  background-color: #464746;
}

.scroll-up img.button-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Breakpoints */

/* Medium screens */
@media (max-width: 1024px) {
  .logo-section {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 30px 5%;
  }

  .hero {
    text-align: center;
    padding: 60px 5%;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .gallery {
    gap: 15px;
  }

  .footer-logo img {
    width: 64px;
  }

  .social-icons img {
    width: 48px;
    height: 48px;
  }

  .hero .madexchirag {
    font-size: clamp(1.8rem, 7vw, 48px);
  }

  .hero p {
    font-size: clamp(0.9rem, 3vw, 14px);
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero .madexchirag {
    font-size: font-size: clamp(2rem, 8vw, 36px);
  }

  .hero p {
    font-size: clamp(0.8rem, 2.5vw, 12px);
  }

  .scroll-up {
    bottom: 20px;
    right: 20px;
    padding: 12px;
  }

  .scroll-up img.button-icon {
    width: 20px;
    height: 20px;
  }
}


