*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

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

h2 {
  font-size: 2.2rem;
  margin: 25px 0;
  text-align: center;
}

h3 {
  text-align: center;
  margin: 22px;
}

.highlight {
  color: #00bfae;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #233de0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #233de0, #00bfae);
  color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  margin: 15px 0;
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.9;
}

.scroll-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #f4f4f4;
  color: #233de0;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, background 0.3s;
}
.scroll-button:hover {
  transform: scale(1.1);
  background: #233de0;
  color: #f4f4f4;
}

.about-section {
  padding: 80px 40px;
  background: #1c1a1a;
  color: #f4f4f4;
  text-align: center;
}

.about-header {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.image-grid .about-me-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 360px;
}
.image-grid .about-me-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.image-grid .about-me-card .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.image-grid .about-me-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-grid .about-me-card .image-container:hover img {
  transform: scale(1.1);
}
.image-grid .about-me-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  opacity: 0.7;
}
.image-grid .about-me-card .content h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}
.image-grid .about-me-card .content p {
  margin: 10px 0 0;
  text-align: center;
  color: #1c1a1a;
}

.image-item {
  height: 250px;
  background: #ddd;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-item img {
  height: 200px;
}
.image-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-section {
  padding: 80px 40px;
  color: #1c1a1a;
}

.portfolio-header {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

.portfolio-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.portfolio-item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}
.portfolio-item:hover .image {
  opacity: 0.2;
  transform: scale(1.1);
}
.portfolio-item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1c1a1a;
  text-align: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}
.portfolio-item .content h3 {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 10px 0px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.portfolio-item .content p {
  font-size: 1rem;
}
.portfolio-item:hover .content {
  opacity: 1;
}

.contact-section {
  padding: 80px 40px;
  background: #1c1a1a;
  color: #f4f4f4;
}

.contact-header {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input[type=text], input[type=email], textarea, button {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  color: #222222;
  transition: border-color 0.3s ease;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus, button:focus {
  border-color: #233de0;
}

.submit-button {
  padding: 15px;
  background: #00bfae;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}
.submit-button:hover {
  transform: scale(1.1);
  background: #233de0;
}

.footer {
  background-color: #1c1a1a;
  color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
  font-size: 1rem;
}
.footer .footer-copyright {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.footer .footer-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.footer .footer-content .footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-content .footer-item i {
  font-size: 2rem;
  margin-bottom: 10px;
}
.footer .footer-content .footer-item .social-link {
  color: #f4f4f4;
  font-size: 1.5rem;
  margin: 5px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-item .social-link:hover {
  color: #233de0;
}
.footer .footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
.footer .footer-contact .footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer .footer-contact .footer-contact-item .contact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.footer .footer-contact .footer-contact-item .contact-text {
  font-size: 1.2rem;
}

@media (min-width: 646px) {
  .portfolio-section .portfolio-item {
    height: 330px;
  }
  .portfolio-section .portfolio-item .content p {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  .portfolio-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .portfolio-section .portfolio-item .content p {
    font-size: 0.85rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-contact {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
@media (min-width: 1024px) {
  .portfolio-section {
    max-width: 1400px;
    padding: 0 10px;
  }
  .portfolio-section .image-grid .about-me-card {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .portfolio-section .portfolio-item .content p {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .about-section .about-me-card {
    width: 80%;
    margin: 0 auto;
  }
  .portfolio-section {
    padding: 0 50px;
  }
  .portfolio-section .portfolio-item .content p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
