@font-face { 
  font-family: "Oswald"; 
  src: url("oswald.woff2") format("woff2"); 
  font-display: swap; 
  
  }


:root {
  --white-color-text: hsl(0, 0%, 100%);
  --orange-color-text: hsl(25, 90%, 55%);
  --black-color-background: hsl(0, 0%, 0%);
  --dark-grey-color-background: hsl(0, 0%, 8%);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
  
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.wrapper {
  position: relative;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-size: larger;
  z-index: 10;
}

.logo {
  color: var(--orange-color-text);
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.logo:hover,
.logo:focus {
  color: var(--white-color-text); 
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.8); 
  transform: scale(1.01);
}


.nav-desktop {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--white-color-text);
  text-decoration: none;
  position: relative; 
  font-weight: 600;
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.nav-list a::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--orange-color-text);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.nav-list a:hover,
.nav-list a:focus {
  color: var(--white-color-text); 
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
  left: 0%;
}




.nav-mobile .nav-list {
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile {
  position: absolute;
  top: 60px;
  right: 0;
  background: var(--dark-grey-color-background);
  padding: 1rem;
  width: 220px;
  border-radius: 0 0 0 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 15; 
}

.nav-mobile.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white-color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}

.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 120vh;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5; 
  padding: 0 1rem; 
}

.hero-title {
  font-size: clamp(2rem, 6vw, 5.5rem); 
  margin-bottom: 0.5rem;
  font-variant: small-caps;
  color: var(--white-color-text);
  line-height: 1.2;
  word-break: break-word; 
}

.hero-title .highlight {
  color: var(--orange-color-text);
  font-variant-caps: all-petite-caps;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-title .accent {
  color: var(--white-color-text);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}


.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--white-color-text);
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.hero-cta-btn {
  background-color: var(--orange-color-text);
  color: var(--white-color-text);
  border: none;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero-cta-btn:hover {
  background-color: hsl(25, 90%, 45%);
}

.cta-btn {
  background-color: var(--orange-color-text);
  color: var(--white-color-text);
  border: none;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: hsl(25, 90%, 45%);
}

.info-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch; 
  gap: 2rem;
  flex-wrap: wrap;
}

.info-list li {
  font-size: 1rem;
  color: var(--white-color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  flex: 1;
  min-width: 150px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}


.info-list .icon {
  color: var(--orange-color-text);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}



@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.4;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .header {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    width: 100%;
    border-radius: 0;
    top: 55px;
    right: 0;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  .hamburger,
  .nav-mobile {
    display: none;
  }
}




.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: var(--dark-grey-color-background);
  color: var(--white-color-text);
}

.about-content {
  flex: 1 1 500px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text {
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex: 1 1 auto;
  }

  .about-text {
    font-size: 1rem;
  }
}



.services {
  padding: 4rem 2rem;
  background-color: var(--black-color-background);
  color: var(--white-color-text);
  text-align: center;
}

.services-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--white-color-text);
}

.card-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card-service {
  background-color: var(--dark-grey-color-background);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  border: 1px solid transparent; 
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card-service:hover {
  border-color: var(--orange-color-text);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
  transform: translateY(-1px); 
}


.card-service .icon {
  font-size: 2.5rem;
  color: var(--orange-color-text);
  margin-bottom: 1rem;
}

.card-service h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.card-service p {
  font-size: 1rem;
  line-height: 1.5;
}


.gallery {
  padding: 4rem 2rem;
  background-color: var(--dark-grey-color-background);
  color: var(--white-color-text);
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}


@media (max-width: 767px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid img {
    flex: 0 0 auto;
    width: 80%; 
    scroll-snap-align: center;
  }

  
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-grid {
    -ms-overflow-style: none;  
    scrollbar-width: none;     
  }
}


.team {
  padding: 4rem 2rem;
  background-color: var(--black-color-background);
  color: var(--white-color-text);
  text-align: center;
}

.team-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--dark-grey-color-background);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.team-card img {
  width: 100%;
  height: 350px;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 6px;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}


@media (max-width: 767px) {
  .team-cards {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-card {
    flex: 0 0 90%; 
    scroll-snap-align: center;
  }


  .team-cards::-webkit-scrollbar {
    display: none;
  }
  .team-cards {
    -ms-overflow-style: none;  
    scrollbar-width: none;     
  }
}


.pricing {
  padding: 4rem 2rem;
  background-color: var(--dark-grey-color-background);
  color: var(--white-color-text);
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.price-card {
  background-color: var(--black-color-background);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--orange-color-text);
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: center;
}

.price-card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.price-card .cta-btn {
  background-color: var(--orange-color-text);
  color: var(--white-color-text);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.price-card .cta-btn:hover {
  background-color: hsl(25, 90%, 45%);
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--white-color-text);
  opacity: 0.8;
}

.price-card.popular {
  border: 3px solid var(--orange-color-text);
  position: relative;
}

.price-card .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange-color-text);
  color: var(--white-color-text);
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


@media (max-width: 767px) {
  .pricing-cards {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .price-card {
    flex: 0 0 80%; 
    scroll-snap-align: center;
  }


  .pricing-cards::-webkit-scrollbar {
    display: none;
  }
  .pricing-cards {
    -ms-overflow-style: none;  
    scrollbar-width: none;     
  }

  .price-card .tag {
  position: absolute;
  top: 0px;
  left: 50%;
  border-radius: 0px;
}
}




.contact {
  padding: 4rem 2rem;
  background-color: var(--black-color-background);
  color: var(--white-color-text);
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-form {
  flex: 1 1 350px;
  background-color: var(--black-color-background);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: var(--orange-color-text);
}

.contact-form label {
  display: block;
  margin: 0.75rem 0 0.25rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange-color-text);
}

.contact-form .cta-btn {
  background-color: var(--orange-color-text);
  color: var(--white-color-text);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form .cta-btn:hover {
  background-color: hsl(25, 90%, 45%);
}

.info-contact-cards {
  flex: 1 1 350px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background-color: var(--black-color-background);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.info-card .icon {
  font-size: 2rem;
  color: var(--orange-color-text);
  margin-bottom: 0.5rem;
}

.info-card h4 {
  margin-bottom: 0.5rem;
  color: var(--orange-color-text);
  text-transform: uppercase;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}



.footer {
  background-color: var(--dark-grey-color-background);
  color: var(--white-color-text);
  padding: 3rem 2rem;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  color: var(--orange-color-text);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.footer-brand .footer-logo:hover,
.footer-brand .footer-logo:focus {
  color: var(--white-color-text); 
  text-shadow: 0 0 6px rgba(255, 140, 0, 0.8); 
  transform: scale(1.01); 
}


.footer-brand .footer-tagline {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-content h4 {
  color: var(--orange-color-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 1rem;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-content ul li {
  margin-bottom: 0.5rem;
}

.footer-content a {
  color: var(--white-color-text);
  text-decoration: none;
}

.footer-content a:hover {
  color: var(--orange-color-text);
}

.footer-socials ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.footer-socials ul li {
  display: inline-block;
}

.footer-socials .icon {
  font-size: 1.5rem;
  color: var(--white-color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials .icon:hover {
  color: var(--orange-color-text);
  transform: scale(1.2);
}


.footer-socials p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer hr {
  border: none;
  border-top: 1px solid var(--orange-color-text);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom .developer {
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-bottom .developer a {
  color: var(--white-color-text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}


.footer-bottom .developer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--orange-color-text);
  transition: width 0.3s ease;
}

.footer-bottom .developer a:hover {
  color: var(--orange-color-text);
}

.footer-bottom .developer a:hover::after {
  width: 100%;
}

