@font-face {
  font-family: 'Blackout';
  src: url('blackout.2am.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {margin:0; padding:0; box-sizing:border-box;}
  body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: #111111;
    background: linear-gradient(135deg, rgba(17, 17, 17, 1) 0%, rgba(44, 17, 17, 1) 85%, rgba(255, 51, 51, 1) 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    line-height: 1.6;
  }
  a {color:#f33; text-decoration:none;}

  section {padding:60px 2rem 60px;}
.portfolio-container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.portfolio-preview {
  flex: 1;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.portfolio-preview h2 {
  font-family: 'Blackout', sans-serif;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  order: 1;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
  align-content: center;
  margin: 1rem auto 1rem auto;
  width: 90%;
  max-width: 600px;
  aspect-ratio: 1;
  order: 2;
  overflow: hidden;
}

.portfolio-button {
  margin-top: auto;
  order: 3;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-top: 1rem;
  margin-left: 30%;
  margin-right: 30%;
}

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

.portfolio-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.portfolio-buttons .cta {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #f33;
  font-weight: 500;
}

.portfolio-button .cta span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 20px;
  padding-right: 10px;
  padding-left: 10px;
  text-transform: uppercase;
}

.portfolio-buttons .cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.portfolio-buttons .cta:hover svg {
  transform: translateX(0);
}

.portfolio-buttons .cta:active svg {
  transform: scale(0.9);
}

.portfolio-button .hover-underline-animation {
  position: relative;
  color: #fff;
  padding-bottom: 20px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
}

.portfolio-button .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.portfolio-button .cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.graphic-full {
  padding: 80px 2rem;
}

.portfolio-full {
  text-align: center;
}

.portfolio-full h2 {
  font-family: 'Blackout', sans-serif;
  color: #fff;
  font-size: 3rem;
  margin-bottom: 3rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-height: 80vh;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #bbb;
}

.game-full {
  padding: 80px 2rem;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.see-more {
  --h-button: 48px;
  --w-button: 102px;
  --round: 0.75rem;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(255, 0, 0, 0.8) 0%,
      rgba(255, 0, 0, 0) 100%
    ),
    linear-gradient(0deg, #111, #111);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 12px 18px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.see-more::before,
.see-more::after {
  content: "";
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}
.see-more::before {
  --space: 1px;
  background: linear-gradient(
    177.95deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.see-more::after {
  --space: 2px;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(255, 0, 0, 0.8) 0%,
      rgba(255, 0, 0, 0) 100%
    ),
    linear-gradient(0deg, #111, #111);
}
.see-more:active {
  transform: scale(0.95);
}

.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(
    100% 75% at 55%,
    rgba(255, 0, 0, 0.8) 0%,
    rgba(255, 0, 0, 0) 100%
  );
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}
.fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #DD0426;
  pointer-events: none;
}
.see-more:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}
@keyframes floating-points {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(-150px);
    opacity: 0;
  }
}
.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}
.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}
.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(10) {
  left: 95%;
  opacity: 1;
  animation-duration: 3.5s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(11) {
  left: 3%;
  opacity: 0.8;
  animation-duration: 3.1s;
  animation-delay: 0.3s;
}
.points_wrapper .point:nth-child(12) {
  left: 7%;
  opacity: 0.6;
  animation-duration: 2.8s;
  animation-delay: 0.6s;
}
.points_wrapper .point:nth-child(13) {
  left: 12%;
  opacity: 0.9;
  animation-duration: 3.3s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(14) {
  left: 17%;
  opacity: 0.7;
  animation-duration: 2.9s;
  animation-delay: 0.4s;
}
.points_wrapper .point:nth-child(15) {
  left: 22%;
  opacity: 0.5;
  animation-duration: 3.2s;
  animation-delay: 0.7s;
}
.points_wrapper .point:nth-child(16) {
  left: 27%;
  opacity: 0.8;
  animation-duration: 3.0s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(17) {
  left: 32%;
  opacity: 0.6;
  animation-duration: 2.7s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(18) {
  left: 37%;
  opacity: 0.9;
  animation-duration: 3.4s;
  animation-delay: 0.8s;
}
.points_wrapper .point:nth-child(19) {
  left: 42%;
  opacity: 0.7;
  animation-duration: 3.1s;
  animation-delay: 0.3s;
}
.points_wrapper .point:nth-child(20) {
  left: 47%;
  opacity: 0.5;
  animation-duration: 2.8s;
  animation-delay: 0.6s;
}
.points_wrapper .point:nth-child(21) {
  left: 52%;
  opacity: 0.8;
  animation-duration: 3.3s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(22) {
  left: 57%;
  opacity: 0.6;
  animation-duration: 2.9s;
  animation-delay: 0.4s;
}
.points_wrapper .point:nth-child(23) {
  left: 62%;
  opacity: 0.9;
  animation-duration: 3.2s;
  animation-delay: 0.7s;
}
.points_wrapper .point:nth-child(24) {
  left: 67%;
  opacity: 0.7;
  animation-duration: 2.7s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(25) {
  left: 72%;
  opacity: 0.5;
  animation-duration: 3.0s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(26) {
  left: 77%;
  opacity: 0.8;
  animation-duration: 3.4s;
  animation-delay: 0.8s;
}
.points_wrapper .point:nth-child(27) {
  left: 82%;
  opacity: 0.6;
  animation-duration: 2.8s;
  animation-delay: 0.3s;
}
.points_wrapper .point:nth-child(28) {
  left: 87%;
  opacity: 0.9;
  animation-duration: 3.1s;
  animation-delay: 0.6s;
}
.points_wrapper .point:nth-child(29) {
  left: 92%;
  opacity: 0.7;
  animation-duration: 2.9s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(30) {
  left: 97%;
  opacity: 0.5;
  animation-duration: 3.2s;
  animation-delay: 0.4s;
}
.points_wrapper .point:nth-child(31) {
  left: 5%;
  opacity: 0.8;
  animation-duration: 3.3s;
  animation-delay: 0.7s;
}
.points_wrapper .point:nth-child(32) {
  left: 15%;
  opacity: 0.6;
  animation-duration: 2.8s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(33) {
  left: 25%;
  opacity: 0.9;
  animation-duration: 3.1s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(34) {
  left: 35%;
  opacity: 0.7;
  animation-duration: 2.9s;
  animation-delay: 0.8s;
}
.points_wrapper .point:nth-child(35) {
  left: 45%;
  opacity: 0.5;
  animation-duration: 3.0s;
  animation-delay: 0.3s;
}
.points_wrapper .point:nth-child(36) {
  left: 55%;
  opacity: 0.8;
  animation-duration: 3.2s;
  animation-delay: 0.6s;
}
.points_wrapper .point:nth-child(37) {
  left: 65%;
  opacity: 0.6;
  animation-duration: 2.7s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(38) {
  left: 75%;
  opacity: 0.9;
  animation-duration: 3.4s;
  animation-delay: 0.4s;
}
.points_wrapper .point:nth-child(39) {
  left: 85%;
  opacity: 0.7;
  animation-duration: 2.8s;
  animation-delay: 0.7s;
}
.points_wrapper .point:nth-child(40) {
  left: 93%;
  opacity: 0.5;
  animation-duration: 3.1s;
  animation-delay: 0.2s;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
    z-index: 1000;
  }

.logo-link {
  text-decoration: none;
}

.logo {
  flex: 0 0 auto;
  color: #f33;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.logo-link:hover .logo {
  color: #fff;
}

  nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
  }

nav .cta {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #f33;
  font-weight: 500;
}

nav .cta span {
  padding-bottom: 7px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
}

nav .cta svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

nav .cta:hover svg {
  transform: translateX(0);
}

nav .cta:active svg {
  transform: scale(0.9);
}

nav .hover-underline-animation {
  position: relative;
  color: #f33;
  padding-bottom: 20px;
}

nav .hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f33;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

nav .cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.lang-switch {
    flex: 0 0 auto;
    display: flex;
    gap: 0.5rem;
  }
  .lang-switch .cta {
    border: none;
    background: none;
    cursor: pointer;
    color: #f33;
    font-weight: 600;
    text-decoration: none;
  }
  .lang-switch .cta span {
    padding-bottom: 7px;
    letter-spacing: 2px;
    font-size: 12px;
    padding-right: 10px;
    text-transform: uppercase;
  }
  .lang-switch .cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
  }
  .lang-switch .cta:hover svg {
    transform: translateX(0);
  }
  .lang-switch .cta.active {
    color: #fff;
  }
  .lang-switch .cta.active .hover-underline-animation:after {
    background-color: #fff;
  }
  .lang-switch .hover-underline-animation {
    position: relative;
    padding-bottom: 20px;
  }
  .lang-switch .hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f33;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .lang-switch .cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
.hero {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #111;
  overflow: visible;
  margin-top: 80px;
}



.light-pillar-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-title {
  position: absolute;
  top: 50%;          /* wyśrodkowanie w pionie */
  left: 50%;         /* wyśrodkowanie w poziomie */
  transform: translate(-50%, -50%);
  color: #F02D3A;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  z-index: 2;        /* nad niebieskim */
  text-align: center;
  pointer-events: none; /* żeby nie przeszkadzało w interakcji */
  line-height: 1.4;
  max-width: 80%;
}

.hero-title-blue {
  color: #F02D3A;
  transform: translate(-51%, -49%); /* 1% w lewo i 1% w dół (-50% - 1%, -50% + 1%) */
  z-index: 1;        /* pod białym */
  line-height: 1.4;
}





  footer {padding:2rem; text-align:center; background:#111; border-top:1px solid #333;}
@media(max-width:768px){
  .hero {
    flex-direction: column;
    height: 150px;
    margin-top: 120px;
  }
  
  header {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .logo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  nav {
    position: static;
    transform: none;
    gap: 1rem;
  }
  
  nav .cta span {
    font-size: 16px;
    letter-spacing: 2px;
    padding-right: 12px;
  }
  
  .hero-title {
    font-size: 3rem;
    line-height: 1;
  }
  
  .portfolio-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .portfolio-preview {
    min-height: auto;
    padding: 1rem;
  }
  
  .mini-gallery {
    width: 100%;
    max-width: 400px;
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  nav {
    gap: 0.5rem;
  }
  
  nav .cta span {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

  .landing-hero {
  padding: 120px 2rem 0px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.landing-content {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.landing-text {
  flex: 1;
  width: 50%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-image {
  flex: 1;
  width: 50%;
  text-align: center;
}

.landing-image img {
  max-width: 85%;
  height: auto;
  border-radius: 8px;
}

.landing-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #FF3333;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.highlight-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #DFE0E2;
}

.landing-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #FF3333;
  line-height: 1.2;
  margin: 0;
}

@media(max-width:768px) {
  .landing-hero {
    padding: 100px 1rem 60px;
  }
  
  .landing-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .landing-text {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .landing-image {
    width: 100%;
  }
  
  .landing-description {
    font-size: 1.5rem;
  }
  
  .landing-title {
    font-size: 2.5rem;
  }
  
  .logo {
    display: none;
  }
}

@media(max-width:480px) {
  .landing-description {
    font-size: 1.2rem;
  }
  
  .landing-title {
    font-size: 2rem;
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .landing-description {
    font-size: 2rem;
  }
  
  .landing-title {
    font-size: 3.5rem;
  }
  
  .landing-text {
    padding-right: 1rem;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .landing-description {
    font-size: 2.5rem;
  }
  
  .landing-title {
    font-size: 4rem;
  }
  
  .landing-text {
    padding-right: 1.5rem;
  }
}

.concept-section {
  padding: 0px 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.concept-content {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.concept-text {
  flex: 1;
  width: 50%;
  padding-right: 2rem;
}

.concept-image {
  flex: 1;
  width: 50%;
  text-align: center;
}

.concept-image img {
  max-width: 42.5%;
  height: auto;
  border-radius: 8px;
}

.concept-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #FF3333;
  line-height: 1.2;
  margin: 0 0 2rem 0;
}

.concept-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FF3333;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:768px) {
  .concept-section {
    padding: 60px 1rem;
  }
  
  .concept-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .concept-text {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .concept-image {
    width: 100%;
  }
  
  .concept-title {
    font-size: 2.5rem;
  }
  
  .concept-description {
    font-size: 1.5rem;
  }
}

@media(max-width:480px) {
  .concept-title {
    font-size: 2rem;
  }
  
  .concept-description {
    font-size: 1.2rem;
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .concept-title {
    font-size: 3rem;
  }
  
  .concept-description {
    font-size: 1.8rem;
  }
  
  .concept-text {
    padding-right: 1rem;
  }
  
  .landing-cta {
    margin-top: 2.5rem;
  }
}
  
  .concept-description {
    font-size: 1.8rem;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .concept-title {
    font-size: 3.5rem;
  }
  
  .concept-description {
    font-size: 1.9rem;
  }
  
  .concept-text {
    padding-right: 1.5rem;
  }
  
.landing-cta {
  margin-top: 5rem;
  width: 60%;
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}

.landing-cta:hover {
  background: #fff;
  color: #FF3333;
}
}
  
  .concept-description {
    font-size: 1.9rem;
  }
}

.execution-section {
  padding: 0px 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.execution-content {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.execution-image {
  flex: 1;
  width: 50%;
  text-align: center;
}

.execution-text {
  flex: 1;
  width: 50%;
  padding-left: 2rem;
}

.execution-image img {
  max-width: 63.75%;
  height: auto;
  border-radius: 8px;
}

.execution-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #FF3333;
  line-height: 1.2;
  margin: 0 0 2rem 0;
}

.execution-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FF3333;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:768px) {
  .execution-section {
    padding: 60px 1rem;
  }
  
  .execution-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .execution-text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  
  .execution-image {
    width: 100%;
  }
  
  .execution-title {
    font-size: 2.5rem;
  }
  
  .execution-description {
    font-size: 1.5rem;
  }
}

@media(max-width:480px) {
  .execution-title {
    font-size: 2rem;
  }
  
  .execution-description {
    font-size: 1.2rem;
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .execution-title {
    font-size: 3rem;
  }
  
  .execution-description {
    font-size: 1.8rem;
  }
  
  .execution-text {
    padding-left: 1rem;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .execution-title {
    font-size: 3.5rem;
  }
  
  .execution-description {
    font-size: 1.9rem;
  }
  
  .execution-text {
    padding-left: 1.5rem;
  }
}

.revisions-section {
  padding: 0px 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.revisions-content {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.revisions-text {
  flex: 1;
  width: 50%;
  padding-right: 2rem;
}

.revisions-image {
  flex: 1;
  width: 50%;
  text-align: center;
}

.revisions-image img {
  max-width: 63.75%;
  height: auto;
  border-radius: 8px;
}

.revisions-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #FF3333;
  line-height: 1.2;
  margin: 0 0 2rem 0;
}

.revisions-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FF3333;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:768px) {
  .revisions-section {
    padding: 60px 1rem;
  }
  
  .revisions-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .revisions-text {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .revisions-image {
    width: 100%;
  }
  
  .revisions-title {
    font-size: 2.5rem;
  }
  
  .revisions-description {
    font-size: 1.5rem;
  }
}

@media(max-width:480px) {
  .revisions-title {
    font-size: 2rem;
  }
  
  .revisions-description {
    font-size: 1.2rem;
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .revisions-title {
    font-size: 3rem;
  }
  
  .revisions-description {
    font-size: 1.8rem;
  }
  
  .revisions-text {
    padding-right: 1rem;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .revisions-title {
    font-size: 3.5rem;
  }
  
  .revisions-description {
    font-size: 1.9rem;
  }
  
  .revisions-text {
    padding-right: 1.5rem;
  }
}

.highlight-white {
  color: #DFE0E2;
}

.buttons-section {
  padding: 60px 2rem;
  text-align: center;
}

.buttons-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.cta-button {
  flex: 1;
  min-width: 200px;
  padding: 20px 30px;
  border: 2px solid #FF3333;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.primary {
  background: transparent;
  color: #fff;
}

.cta-button.secondary {
  background: transparent;
  color: #FF3333;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
}

.cta-button.primary:hover {
  background: #ffffff;
  color: #FF3333;
}

.cta-button.secondary:hover {
  background: #FF3333;
  color: #fff;
}

@media(max-width:768px) {
  .buttons-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
    min-width: auto;
  }
  
  .buttons-section {
    padding: 40px 1rem;
  }
}

.landing-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.landing-cta {
  width: 100%;
}

.landing-cta.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.landing-cta.secondary:hover {
  background: #fff;
  color: #FF3333;
}

@media(max-width:768px) {
  .landing-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
  }
  
  .landing-cta {
    width: 100% !important;
    margin: 0;
  }
}
  
  .landing-cta {
    width: 100%;
    margin: 0;
  }
}
  
  .landing-cta {
    width: 100%;
  }
}

/* For screens larger than 1440p */
@media(min-width:1441px) {
  .landing-buttons {
    margin-top: 4rem;
  }
}

@media(max-width:768px) {
  .landing-cta {
    margin-top: 2rem;
    width: 80%;
  }
}

/* For screens larger than 1440p */
@media(min-width:1441px) {
  .landing-cta {
    margin-top: 4rem;
  }
}

.portfolio-hero {
  padding: 120px 5vw 60px;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-content {
  width: 100%;
  max-width: 1800px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.portfolio-info {
  grid-column: 1;
  text-align: left !important;
  padding-left: 2rem !important;
  justify-self: start;
}

.portfolio-images {
  grid-column: 2;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, auto) !important;
  gap: 1rem;
  align-items: center;
}

/* For screens exactly 1440p and around */
@media(min-width:1200px) and (max-width:1600px) {
  .portfolio-hero {
    padding: 60px 2vw 60px !important;
  }
}

/* For screens larger than 1440p */
@media(min-width:1441px) {
  .portfolio-images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .portfolio-images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
  }
}

.portfolio-images img:nth-child(1),
.portfolio-images img:nth-child(2),
.portfolio-images img:nth-child(3) {
  grid-row: 1;
}

.portfolio-images img:nth-child(4),
.portfolio-images img:nth-child(5) {
  grid-row: 2;
}

.portfolio-images img:nth-child(1) { grid-column: 1; }
.portfolio-images img:nth-child(2) { grid-column: 2; }
.portfolio-images img:nth-child(3) { grid-column: 3; }
.portfolio-images img:nth-child(4) { grid-column: 1; }
.portfolio-images img:nth-child(5) { grid-column: 2; }

.portfolio-info {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
}

.portfolio-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #FF3333;
  margin-bottom: 1rem;
  text-align: left !important;
}

.portfolio-description, .portfolio-tools {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #FF3333;
  margin: 0.5rem 0;
  text-align: left !important;
}

.portfolio-images {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex: 2;
  width: 100%;
  max-width: 1200px;
}

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* For screens exactly 1440p and around */
@media(min-width:1200px) and (max-width:1600px) {
  .portfolio-hero {
    padding: 120px 2vw 60px !important;
  }
  
  .portfolio-content {
    max-width: 2000px;
    grid-template-columns: 0.6fr 1.4fr;
  }
  
  .portfolio-img {
    height: 300px !important;
  }
}

/* For screens larger than 1440p */
@media(min-width:1441px) {
  .portfolio-images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
  }
  
  .portfolio-img {
    height: 350px;
  }
}

@media(min-width:1025px) and (max-width:1440px) {
  .portfolio-images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
  }
  
  .portfolio-img {
    height: 280px;
  }
}

.portfolio-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

@media(max-width:768px) {
  .portfolio-hero {
    padding: 40px 5vw 40px;
    min-height: 60vh;
  }
  
  .portfolio-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .portfolio-info {
    grid-column: 1;
    text-align: left;
    padding-left: 1rem;
  }
  
  .portfolio-images {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 1rem;
  }
  
  .portfolio-img {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .portfolio-title {
    font-size: 2rem;
  }
  
  .portfolio-description, .portfolio-tools {
    font-size: 1.2rem;
  }
}
  
  .portfolio-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .portfolio-info {
    text-align: center;
    padding-right: 0;
  }
  
  .portfolio-images {
    flex-direction: column;
    gap: 2rem;
  }
  
  .portfolio-img {
    max-width: 80%;
  }
  
  .portfolio-title {
    font-size: 2rem;
  }
  
  .portfolio-description, .portfolio-tools {
    font-size: 1.2rem;
  }
}

@media(max-width:480px) {
  .portfolio-img {
    max-width: 90%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-height: 80vh;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #bbb;
}

.contact-form-section {
  padding: 120px 2rem 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.contact-text {
  flex: 1;
  padding-right: 2rem;
}

.contact-form-container {
  flex: 1;
}

.contact-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #FF3333;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.contact-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #FF3333;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FF3333;
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #FF3333;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: #FF3333;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

.submit-button:hover {
  background: #fff;
  color: #FF3333;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
}

@media(max-width:768px) {
  .contact-form-section {
    padding: 100px 1rem 60px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-text {
    padding-right: 0;
    text-align: center;
  }
  
  .contact-form-container {
    width: 100%;
    max-width: 100%;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-description {
    font-size: 1.2rem;
  }
  
  .form-input, .form-textarea {
    width: 100%;
  }
}

html {scroll-behavior:smooth;}
