/* Polices */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "PlayfairDisplay Italic";
  src: url("../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
  background-color: white;
  overflow-x: hidden;
  position: relative;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: relative;
}
nav .instagram-link {
  margin-right: auto;
  display: flex;
  align-items: center;
}
nav .instagram-link .instagram-icon {
  height: 50px;
  width: 50px;
  transition: opacity 0.3s ease;
}
nav .instagram-link .instagram-icon:hover {
  opacity: 0.7;
}
nav .nav-link,
nav .nav-separator {
  font-family: "Outfit", sans-serif;
  margin-right: 1rem;
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 500;
}
nav .nav-link:hover,
nav .nav-separator:hover {
  opacity: 0.7;
}
nav .nav-separator {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
nav .nav-separator::after {
  display: none;
}

main {
  flex: 1;
}

footer {
  align-self: center;
  padding-bottom: 4rem;
  text-align: center;
}
footer p {
  font-size: 1rem;
  color: #000;
}

h1 {
  font-size: clamp(6rem, 15vw, 15rem);
  line-height: 1;
  position: relative;
  font-weight: 700;
}

h2 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1.1;
  font-weight: 700;
}

h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.3;
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.container {
  flex: 1;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.slogan {
  font-family: "PlayfairDisplay Italic", serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: 4rem;
  color: black;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 4rem;
  min-height: 60vh;
  align-items: center;
}
.hero h1 {
  grid-row: 1;
  grid-column: 1/2;
  justify-self: start;
}
.hero p {
  grid-row: 2;
  grid-column: 2/3;
  display: flex;
  justify-content: start;
  align-items: center;
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.services-section {
  background-color: black;
  min-height: 100vh;
  padding: 4rem 2rem;
  width: 100%;
  position: relative;
}
.services-section .section-title {
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0rem 2rem 2rem 2rem;
}
.services-grid .service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.services-grid .service::before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-grid .service:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}
.services-grid .service:hover::before {
  opacity: 1;
}
.services-grid .service:hover h3 {
  color: white;
}
.services-grid .service h3 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  z-index: 1;
}
.services-grid .service p {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.6;
  letter-spacing: 0.05rem;
  margin-top: auto;
  color: white;
  z-index: 1;
}

.about-section {
  padding: 4rem 2rem;
  background-color: white;
}
.about-section .section-title {
  color: black;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-content .about-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.about-content .about-image img:hover {
  transform: scale(1.05);
}
.about-content .about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: black;
}
.about-content .about-text p.about-intro {
  font-size: 1.4rem;
  font-weight: 600;
  color: black;
}

.projects-section {
  padding: 4rem 2rem;
  background-color: black;
}
.projects-section .section-title {
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.project-card:hover .project-overlay {
  opacity: 1 !important;
}
.project-card .project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card .project-image .project-overlay {
  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.7));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card .project-image .project-overlay .project-tag {
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.project-card .project-info {
  padding: 2rem;
}
.project-card .project-info h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.project-card .project-info p {
  color: white;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.project-card .project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-card .project-tech span {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-content h2 {
  color: black;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}
.contact-content p {
  color: black;
  font-size: 1.3rem;
  margin-bottom: 4rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: black;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.contact-button .arrow {
  size: 1.5rem;
  transition: transform 0.3s ease;
}
.contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgb(0, 255, 55);
  background: black;
}
.contact-button:hover .arrow {
  transform: translateX(5px);
}
.contact-button:active {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0;
  }
  .hero h1 {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }
  .hero p {
    grid-row: 2;
    grid-column: 1;
    justify-content: center;
    text-align: center;
  }
  .hero .slogan {
    padding-bottom: 0;
  }
  .services-section {
    padding: 3rem 1rem;
  }
  .about-content {
    gap: 3rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }
  nav .nav-link,
  nav .nav-separator {
    font-size: 1.2rem;
    margin-right: 0.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  .services-grid .service {
    padding: 2rem;
  }
  .services-grid .service h3 {
    font-size: 1.8rem;
  }
  .services-grid .service p {
    font-size: 1.1rem;
  }
  .services-section {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
  .services-section .section-title {
    margin-bottom: 3rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-content .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-content .about-text p {
    font-size: 1.1rem;
  }
  .about-content .about-text p.about-intro {
    font-size: 1.3rem;
  }
  .about-section,
  .projects-section,
  .contact-section {
    padding: 3rem 1rem;
  }
  footer {
    padding-bottom: 3rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-content h2 {
    font-size: 2rem;
  }
  .contact-content p {
    font-size: 1.1rem;
  }
  .contact-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }
  nav {
    padding: 1rem 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  nav .nav-link,
  nav .nav-separator {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  .hero {
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
  .services-grid {
    gap: 1.5rem;
    padding: 0.5rem;
  }
  .services-grid .service {
    padding: 1.5rem;
  }
  .services-grid .service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .services-grid .service p {
    font-size: 1rem;
  }
  .services-section {
    padding: 2rem 0.5rem;
  }
  .services-section .section-title {
    margin-bottom: 2rem;
  }
  .about-section {
    padding: 2rem 0.5rem;
  }
  .about-content {
    gap: 1.5rem;
  }
  .about-content .about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .about-content .about-text p.about-intro {
    font-size: 1.15rem;
  }
  .projects-section {
    padding: 2rem 0.5rem;
  }
  .projects-grid {
    gap: 1.5rem;
  }
  .project-card .project-image {
    height: 200px;
  }
  .project-card .project-info {
    padding: 1.5rem;
  }
  .project-card .project-info h3 {
    font-size: 1.5rem;
  }
  .project-card .project-info p {
    font-size: 0.95rem;
  }
  .project-card .project-tech span {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  .contact-section {
    padding: 2rem 0.5rem;
  }
  .contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .contact-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .contact-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  footer p {
    font-size: 0.9rem;
  }
  footer {
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) and (max-width: 360px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .services-grid .service {
    padding: 1rem;
  }
  .services-grid .service h3 {
    font-size: 1.3rem;
  }
  .services-grid .service p {
    font-size: 0.9rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .about-text p.about-intro {
    font-size: 1rem;
  }
  .contact-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/*# sourceMappingURL=style.css.map */