
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
  position: relative;
}

/* Geometric Background */
.geometric-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 8rem;
  height: 8rem;
  border: 2px solid rgba(239, 68, 68, 0.3);
  transform: rotate(45deg);
  animation: spin 20s linear infinite;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 6rem;
  height: 6rem;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

.shape-3 {
  bottom: 20%;
  left: 15%;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.4), rgba(219, 14, 14, 0.4));
  transform: skewX(12deg);
  animation: pulse 2s infinite;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
}

.triangle-1 {
  top: 30%;
  right: 30%;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 30px solid rgba(204, 77, 77, 0.5);
  animation: pulse 3s infinite 1s;
}

.triangle-2 {
  bottom: 40%;
  right: 20%;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid rgba(251, 60, 60, 0.4);
  animation: bounce 2s infinite 2s;
}

.line {
  position: absolute;
  height: 1px;
}

.line-1 {
  top: 25%;
  left: 50%;
  width: 16rem;
  background: linear-gradient(to right, transparent, rgba(239, 68, 68, 0.6), transparent);
  transform: rotate(45deg);
  animation: pulse 3s infinite;
}

.line-2 {
  bottom: 35%;
  right: 40%;
  width: 12rem;
  background: linear-gradient(to right, transparent, rgba(249, 22, 22, 0.5), transparent);
  transform: rotate(-45deg);
  animation: pulse 3s infinite 1.5s;
}

.dot {
  position: absolute;
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-1 {
  top: 15%;
  right: 15%;
  width: 12px;
  height: 12px;
  background: #f87171;
}

.dot-2 {
  bottom: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #fb3c3c;
  animation-delay: 0.7s;
}

.dot-3 {
  top: 70%;
  left: 70%;
  width: 16px;
  height: 16px;
  background: #fca5a5;
  animation-delay: 1.4s;
}

/* Navigation */
.navigation {
  display: inline;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.3rem;
  background-color: rgba(0, 0, 0, 0.6);  /* Slight opacity for transparency */
  backdrop-filter: blur(17px);  /* Blurring effect for background */

}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-image {
  width: 70px;
  height: 70px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  transition: all 0.3s ease;
 margin-left: 20%;
}

.logo-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-top: 0;
}

.nav-link {
  text-decoration: none;
  padding-bottom: 5px; /* space for underline */
  position: relative;
  color: rgb(255, 255, 255); /* or your navbar color */
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;      /* thickness of the underline */
  width: 100%;      /* underline matches link width */
  background-color: #a91717; /* your underline color */
  border-radius: 2px;
}

.nav-link:hover {
  color: #f87171;
  transform: rotate(3deg);
}

.nav-link:nth-child(2):hover {
  transform: rotate(-2deg);
}

.nav-link:nth-child(3):hover {
  transform: rotate(1deg);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  grid-column: 3 / 11;
  position: relative;
}

.hero-title h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
}

.title-line {
  display: block;
}

.title-flight {
  color: white;
  transform: rotate(-2deg);
}

.title-sim {
  color: #dc2626;
  transform: rotate(1deg);
  margin-left: 4rem;
}

.title-liveries {
  color: white;
  transform: rotate(-1deg);
  margin-left: 2rem;
}

.hero-decoration-1 {
  position: absolute;
  top: -2rem;
  right: -4rem;
  width: 8rem;
  height: 8rem;
  border: 4px solid rgba(220, 38, 38, 0.3);
  transform: rotate(45deg);
}

.hero-decoration-2 {
  position: absolute;
  top: 8rem;
  left: -11rem;
  width: 6rem;
  height: 6rem;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 50%;
}

.hero-text {
  grid-column: 9 / -1;
  margin-top: 8rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: #d1d5db;
  transform: rotate(2deg);
  background: rgba(127, 29, 29, 0.5);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-cta {
  grid-column: 2 / 8;
  margin-top: 4rem;
}

.cta-button {
  background: #dc2626;
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  transform: rotate(-1deg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button:hover {
  background: #b91c1c;
  transform: rotate(0deg);
}

/* Request Section */
.request-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: stretch;
}

.request-block {
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.block-1 {
  background: #dc2626;
  transform: rotate(-2deg);
}

.block-1 h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  transform: rotate(1deg);
}

.block-1 p {
  color: #fecaca;
  font-size: 1.125rem;
  line-height: 1.75;
}

.block-2 {
  background: white;
  color: black;
  transform: rotate(1deg);
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-square {
  width: 2rem;
  height: 2rem;
  background: #dc2626;
}

.feature-black {
  background: black;
}

.feature span {
  font-weight: 700;
}

.block-3 {
  background: black;
  border: 4px solid #dc2626;
  transform: rotate(-1deg);
}

.start-project-btn {
  width: 100%;
  background: #dc2626;
  color: white;
  border: none;
  padding: 2rem;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-project-btn:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-title {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  transform: rotate(-1deg);
}

.services-what {
  color: white;
}

.services-create {
  color: #dc2626;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.service-2 .service-decoration {
  order: -1;
}

/* Template services alternating layout */


.service-2 {
  direction: rtl;
}

.service-4 {
  direction: rtl;
}

.service-2 .service-content {
  direction: ltr;
}

.service-content {
  transform: rotate(2deg);
  background: rgba(127, 29, 29, 0.2);
  padding: 3rem;
  backdrop-filter: blur(4px);
  border-left: 8px solid #dc2626;
  box-sizing: border-box;
}

.service-2 .service-content {
  transform: rotate(-2deg);
}

.service-3 .service-content {
  transform: rotate(2deg);
}

.service-4 .service-content {
  transform: rotate(-2deg);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 3rem;
  margin-right: 1.5rem;
  color: #f87171;
}

.service-header h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
}

.service-content p {
  color: #d1d5db;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

p.price {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.service-content ul {
  list-style: none;
}

.service-content li {
  color: #fca5a5;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-decoration {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-shape {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-shape-1,
.service-shape-3,
.service-shape-5 {
  width: 8rem;
  height: 8rem;
  background: #dc2626;
  transform: rotate(-12deg);
}

.service-shape-2,
.service-shape-4,
.service-shape-6 {
  width: 6rem;
  height: 6rem;
  background: white;
  margin-left: 2rem;
  transform: rotate(6deg);
}

.service-shape-3 {
  transform: rotate(12deg);
}

.service-shape-4 {
  transform: rotate(-6deg);
}

/* Template Images */
.template-image {
  flex: 0 0 400px;
  border-radius: 1rem;
  overflow: visible;
  padding: 0.5rem;
  margin-left: 2rem;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.template-image:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* Portfolio Section */
.portfolio-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.portfolio-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.portfolio-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 5rem;
  transform: rotate(1deg);
}

.portfolio-chaos {
  color: #dc2626;
}

.portfolio-text {
  color: white;
  margin-left: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.item-1 {
  transform: rotate(2deg);
}

.item-2 {

  transform: rotate(-1deg);
}

.item-3 {

  transform: rotate(1deg);
}

.item-4 {
  transform: rotate(-2deg);
  background: black;
}

.portfolio-item:hover {
  transform: scale(1.05) rotate(0deg);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: all 0.5s ease;
}

.portfolio-item:hover img {
  mix-blend-mode: normal;
}

.portfolio-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: rotate(1deg);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  font-size: 0.875rem;
  color: #fca5a5;
  font-weight: 700;
}

.portfolio-item-title {
  font-size: 1.25rem;
  font-weight: 900;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  transform: rotate(-1deg);
}

.about-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
}

.about-artist {
  color: #dc2626;
  display: block;
  transform: rotate(2deg);
  margin-left: 2rem;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: #d1d5db;
}

.about-p1 {
  background: rgba(127, 29, 29, 0.2);
  padding: 1.5rem;
  transform: rotate(1deg);
  backdrop-filter: blur(4px);
}

.about-p2 {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transform: rotate(-1deg);
  backdrop-filter: blur(4px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat {
  padding: 2rem;
  text-align: center;
}

.stat-1 {
  background: #dc2626;
  transform: rotate(3deg);
}

.stat-2 {
  background: white;
  color: black;
  transform: rotate(-2deg);
}

.stat-3 {
  background: black;
  border: 4px solid #dc2626;
  transform: rotate(1deg);
}

.stat-4 {
  background: #7f1d1d;
  transform: rotate(-3deg);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-1 .stat-number,
.stat-3 .stat-number,
.stat-4 .stat-number {
  color: white;
}

.stat-label {
  font-weight: 700;
}

.stat-1 .stat-label,
.stat-4 .stat-label {
  color: #fecaca;
}

.stat-2 .stat-label {
  color: #374151;
}

.stat-3 .stat-label {
  color: #f87171;
}

/* Footer */
.footer {
  background: #dc2626;
  color: white;
  padding: 2rem 0;
  position: relative;
  z-index: 10;

}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;}

.footer-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.footer-subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.footer-divider {
  border-top: 4px solid black;
  margin: 2rem 0;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text {
    margin-top: 2rem;
  }
  
  .request-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    gap: 1rem;
  }
  
  .portfolio-item {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
    height: 200px;
  }
  
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .hero-title h1 {
    font-size: 3rem;
  }
  
  .services-title,
  .portfolio-title,
  .about-title {
    font-size: 2.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item {
    grid-column: span 1 !important;
    height: 200px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Free Liveries Section */
.free-liveries-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.free-liveries-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.free-content-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.free-text-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  text-align: center;
}

.free-header {
  position: relative;
}

.free-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  transform: rotate(-2deg);
}

.free-get {
  display: block;
  color: white;
}

.free-free {
  display: block;
  color: #dc2626;
  margin-left: 2rem;
  transform: rotate(3deg);
}

.free-liveries {
  display: block;
  color: white;
  margin-left: 1rem;
}

.free-decoration-1 {
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  background: #dc262638;
  transform: rotate(45deg);
}

.free-decoration-2 {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  width: 3rem;
  height: 3rem;
  border: 3px solid #b12e2ea8;
  border-radius: 50%;
}

.free-description {
  transform: rotate(1deg);
  width: 40rem;
}

.free-text {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
  background: rgba(127, 29, 29, 0.466);
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.free-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 700;
  justify-content: center;
}

.benefit-icon {
  font-size: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  transform: rotate(-5deg);
}


.form-chaos {
  background: black;
  padding: 3rem;
  border: 4px solid #dc2626;
  position: relative;
  width: 40rem;
}

.input-group {
  margin-bottom: 2rem;
}

.input-1 {
  transform: rotate(1deg);
}

.input-2 {
  transform: rotate(-1deg);
}

.input-3 {
  transform: rotate(0.5deg);
}

.input-group label {
  display: block;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transform: rotate(-1deg);
}

.input-group input,
.input-group select {
  width: 100%;
  background: #dc2626;
  border: none;
  padding: 1rem;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.input-group input::placeholder {
  color: #fca5a5;
}

.input-group input:focus,
.input-group select:focus {
  outline: 3px solid #f87171;
  background: #b91c1c;
}

/* Style select options to match form */
.input-group select option {
  background: #dc2626;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem;
}

.input-group select option:hover {
  background: #b91c1c;
}

.input-group select option:checked {
  background: #b91c1c;
}

.input-group textarea {
  width: 100%;
  background: #dc2626;
  border: none;
  padding: 1rem 1rem 1.6rem;  /* increase bottom padding */
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;           /* slightly taller line height */
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 3rem;           /* increase min height */
}

.input-group textarea::placeholder {
  color: #fca5a5;
  line-height: 1.5;
  padding-bottom: 0.2rem;     /* extra space */
}

.input-group textarea:focus {
  outline: 3px solid #f87171;
  background: #b91c1c;
}

.free-submit-btn {
  width: 100%;
  background: #dc2626;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  position: relative;       /* added for shine */
  overflow: hidden;         /* added for shine */
  transition: all 0.3s ease;
  transform: rotate(-1deg);
  position: relative; /* establish positioning context */
  z-index: 1;
}

.free-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.free-submit-btn:hover::after {
  animation: shine 0.8s ease forwards;
}

.free-submit-btn:hover {
  background: #b91c1c;
  transform: rotate(0deg) scale(1.02);
}

@keyframes shine {
  0% { left: -40%; }
  100% { left: 120%; }
}


.btn-decoration {
  position: absolute;
  right: -16px;
  top: -8px;
  width: 2rem;
  height: 2rem;
  background: white;
  transform: rotate(45deg);
  z-index: 10; /* higher than button so it’s on top */
}


#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 3px solid #f44336; /* Red border to match theme */
  outline: none; /* Remove outline */
  background-color: #f44336; /* Black background */
  color: #fff; /* White text */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0.5rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 900; /* Bolder font weight */
  transition: all 0.3s ease;
  transform: rotate(-2deg); /* Add chaotic rotation */
  text-transform: uppercase; /* Match website style */
  letter-spacing: 0.1em; /* Add letter spacing */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow */
}

#myBtn:hover {
transform: scale(1.1);  transition: all 0.2s ease;
}



/* Portfolio Header Section */
.portfolio-header-section {
  padding: 12rem 0 7.1rem 0;
  position: relative;
  z-index: 10;
}

.portfolio-header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  text-align: center; /* center inline-block children */
}

.portfolio-header-content {
  text-align: center;
}

.portfolio-main-title {
  font-size: 6.6rem;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 2rem;
  transform: rotate(-1deg);
}

.portfolio-chaos {
  color: #dc2626;
  display: block;
}

.portfolio-text,
.subtitle-chaos {
  display: inline-block; /* needed for horizontal centering */
  margin: 0 auto;        /* centers inline-block elements */
  transform-origin: center center;
}

.portfolio-text {
  color: white;
  transform: rotate(2deg);
  margin-bottom: 1rem; /* optional spacing */
}

.subtitle-chaos {
  color: #dc2626;
  transform: rotate(-1deg);
  margin-bottom: 1rem; /* optional spacing */
}

.portfolio-subtitle {
  font-size: 2.2rem;
  font-weight: 900;
  transform: rotate(1deg);
  margin-bottom: 3rem;
  color: white;
}

.subtitle-line {
  color: #ffffff;
  display: block;
}


.header-decoration-1 {
  position: absolute;
  top: 2rem;
  right: 10%;
  width: 6rem;
  height: 6rem;
  background: #dc262669;
  transform: rotate(45deg);
}

.header-decoration-2 {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  width: 4rem;
  height: 4rem;
  border: 4px solid #f8717181;
  border-radius: 50%;
}

/* Container for the full list */
.featured-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1550px;
  margin: 0 auto;
  margin-top: 3.3rem;
  padding: 0 1.5rem;
}

/* Each featured card */
.featured-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  padding: 1rem 1.5rem;
  color: white;
  overflow: hidden;
  gap: 4rem;
    transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.2);

}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  border-color: rgba(220, 38, 38, 0.45);
}

/* Image container */
.featured-image {
  flex: 0 0 400px; /* fixed width */
  border-radius: 1rem;
  overflow: visible;
  padding: 0.5rem;
  margin-left: 2rem;
}

.featured-image img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}


/* Text content container - fixed width so all text blocks start aligned */
.featured-content {
  flex: 0 0 600px;  /* fix width to align all text */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;   /* remove margin */
  padding: 0;  /* remove padding */
}

.featured-content > * + * {
  margin-top: 0.6rem;
}

.featured-category {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fca5a5;
  text-transform: uppercase;
  margin-bottom: 0;
}

.featured-stats {
  font-size: 1rem;
  font-weight: 700;
  color: #ccc;
}

/* Download button */
.featured-button {
  background-color: #dc2626;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  margin-right: 3rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5); /* bigger + softer */
  transition: 0.3s ease;
}

.featured-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.featured-button:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% { left: -40%; }
  100% { left: 120%; }
}

.featured-button:hover {
  background-color: #ae2222;
  box-shadow: 0 8px 28px rgba(161, 21, 21, 0.6); /* bigger hover shadow */
  transform: scale(1.04);
  transition: 0.3s ease;
}


/* Recent Section */
.recent-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.recent-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recent-title .title-recent {
  color: #dc2626;
  font-size: 4rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.1rem;
}

.recent-title .title-chaos {
  color: white;
  font-size: 4rem;
  font-weight: 900;
  transform: rotate(-2deg);
  display: block;
  margin-top: 0;
  margin-left: 0;
}

.recent-decoration {
  background: #f87171;
  transform: rotate(3deg);
}

.recent-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.6;
  padding-left: 8%;
  margin-bottom: 8rem;
  text-align: left;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;

}

.recent-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  background: #dc2626;
  grid-column: span 2;
  height: 16rem;
}

.recent-item.item-1 {
  transform: rotate(2deg);
}

.recent-item.item-2 {
  transform: rotate(-1deg);
  background: #7f1d1d;
}

.recent-item.item-3 {
  transform: rotate(1deg);
}

.recent-item.item-4 {
  transform: rotate(-2deg);
}

.recent-item.item-5 {
  transform: rotate(1.5deg);
  background: #7f1d1d;
}

.recent-item.item-6 {
  transform: rotate(-1.5deg);
}

.recent-item:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 20;
}

.recent-item img {
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.recent-item:hover img {
  mix-blend-mode: normal;
}

.recent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  opacity: 1;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.recent-item:hover .recent-overlay {
  transform: translateY(0);
}

.recent-category {
  font-size: 0.75rem;
  color: #fff6f6;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.recent-title {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.recent-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Partners Section */
.partners-section {
  position: relative;
  z-index: 10;
}

.partners-container {
  max-width: 93rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partners-title .title-chaos {
  color: #dc2626;
  display: block;
}

.partners-title .title-partners {
  color: white;
  display: block;
  margin-left: 2rem;
  transform: rotate(-2deg);
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  font-weight: 900;
}

.partners-decoration {
  background: #dc2626;
  transform: rotate(-3deg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.partner-item {
  background: black;
  border: 3px solid #dc2626;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.partner-1 {
  transform: rotate(1deg);
}

.partner-2 {
  transform: rotate(-1deg);
}

.partner-3 {
  transform: rotate(1.5deg);
}

.partner-4 {
  transform: rotate(-1.5deg);
}

.partner-item:hover {
  transform: rotate(0deg) scale(1.05);
  border-color: #f87171;
}

.partner-logo {
  margin-bottom: 1.5rem;
}

.partner-logo img {
  width: 100%;
  height: auto;
  filter: grayscale(80%) brightness(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-item:hover .partner-logo img {
  filter: grayscale(0%) brightness(1);
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.partner-type {
  font-size: 0.875rem;
  color: #fca5a5;
  font-weight: 700;
}

.partners-cta {
  text-align: center;
}

.partners-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 2rem 4rem;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(-1deg);
}

.partners-btn:hover {
  background: #b91c1c;
  transform: rotate(0deg) scale(1.02);
}


/* Portfolio CTA Button */
.portfolio-cta {
  text-align: center;
  margin-top: 4rem;
}

.portfolio-btn {
  background: #dc2626;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 2rem 4rem;
  font-size: 1.25rem;
  font-weight: 900;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(-1deg);
}

.portfolio-btn:hover {
  background: #b91c1c;
  transform: rotate(0deg) scale(1.02);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .portfolio-main-title {
    font-size: 4rem;
  }
  
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .featured-main {
    grid-row: span 1;
  }
  
  .recent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .recent-item {
    grid-column: span 1;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-header-section {
  padding: 12rem 0 17rem 0;
  position: relative;
  z-index: 10;
}
  .featured-button {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    margin-right: 1rem;
    white-space: normal;
    display: block;
    width: 100%;
    text-align: center;
}
}


/* About Me Section */
.about-section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-header {
  position: relative;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
  transform: rotate(2deg);
}

.about-main {
  display: block;
  color: white;
}

.about-me {
  display: block;
  color: #dc2626;
  margin-left: 1.5rem;
  transform: rotate(-3deg);
}

.about-decoration-1 {
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 3rem;
  height: 3rem;
  border: 3px solid #dc2626;
  transform: rotate(45deg);
}

.about-decoration-2 {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  background: #f87171;
  border-radius: 50%;
}

.about-description {
  transform: rotate(-1deg);
}

.about-intro {
  background: rgba(220, 38, 38, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(220, 38, 38, 0.3);
  backdrop-filter: blur(4px);
}

.about-greeting {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.4;
}

.name-highlight {
  color: #dc2626;
  font-weight: 900;
}

.about-details {
  background: black;
  padding: 2.5rem;
  border: 3px solid #dc2626;
}

.about-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.team-highlight {
  color: #f87171;
  font-weight: 700;
}

.about-visual {
  transform: rotate(1deg);
}

.about-stats {
  background: #dc2626;
  padding: 3rem 2rem;
  color: white;
  position: relative;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: black;
  z-index: -1;
}

.stat-item {
  text-align: center;
  margin-bottom: 2rem;
  transform: rotate(-2deg);
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-item:nth-child(2) {
  transform: rotate(1deg);
}

.stat-item:nth-child(3) {
  transform: rotate(-1deg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fca5a5;
  margin-top: 0.5rem;
}

/* Livery Status Section */
.status-section {
    padding: 7rem 0;
    position: relative;
    z-index: 10;
}

.status-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.status-title {
    transform: rotate(-2deg);
    font-weight: 900;
}

.featured-text {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0;
  text-align: left; /* Align left instead of center */

}

.featured-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.6;
  padding-left: 13%;
  margin-bottom: 8rem;
  text-align: left; /* Align left instead of center */
}

.title-featured {
  color: #dc2626;
  font-size: 4rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.1rem; /* very small gap */
}

.title-work {
  color: white;
  font-size: 4rem;
  font-weight: 900;
  transform: rotate(-2deg);
  display: block;
  margin-top: 0;
}



.title-status {
    color: #dc2626;
    display: block;
    font-size: 3.5rem;
}

.title-liveries {
    color: #ffffff;
    margin-left: 1rem;
    font-size: 3.5rem;
    transform: rotate(3deg);
}

.status-decoration {
    background: #f44336;
    height: 4px;
    width: 120px;
    margin: 1.5rem auto;
    transform: rotate(-1deg);
}

.status-table-wrapper {
    background: black;
    border: 3px solid #f44336;
    padding: 2rem;
    margin-top: 3rem;
}

.status-table {
    width: 100%;
    border-collapse: separate;
    color: white;
}

.status-table thead th {
    background: #f44336;
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-align: left;
    border-bottom: 3px solid #d32f2f;
}

.status-table thead th:first-child {
    transform: rotate(-1deg);
}

.status-table thead th:nth-child(2) {
    transform: rotate(1deg);
}

.status-table thead th:nth-child(3) {
    transform: rotate(-0.5deg);
}

.status-table thead th:nth-child(4) {
    transform: rotate(0.5deg);
}

.status-table thead th:nth-child(5) {
    transform: rotate(-1deg);
}

.status-table tbody tr {
    border-bottom: 2px solid #333;
    transition: background-color 0.3s ease;
}

.status-table tbody tr:hover {
    background: rgba(244, 67, 54, 0.13);
}

.status-table tbody td {
    padding: 1.25rem 1rem;
    font-weight: 500;
    vertical-align: middle;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-wip {
    background: #f44336;
    color: white;
    transform: rotate(-2deg);
}

.status-planned {
    background: #3c3c3d;
    color: #ff665a;
    border: 2px solid #f44336;
    transform: rotate(1deg);
}


/* Responsive adjustments for status table */
@media (max-width: 1024px) {
    .status-table-wrapper {
        overflow-x: auto;
        transform: none;
    }
    
    .status-table {
        min-width: 700px;
    }
    
    .status-table thead th {
        transform: none;
        padding: 1rem 0.75rem;
    }
      
  /* Add general featured-button responsive base */
  .featured-button {
    margin-right: 0 !important;
  }
  
  /* Make featured-list responsive for tablets */
  .featured-list {
    max-width: 100%;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .featured-item {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
    min-height: auto;
  }
  
  .featured-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0;
    padding: 0;
    order: -1;
  }
  
  .featured-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
  }
  
  .featured-content {
    flex: none;
    width: 100%;
    max-width: 450px;
    margin: 0;
    text-align: center;
  }
  
  .featured-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .featured-category {
    font-size: 0.75rem;
  }
  
  .featured-stats {
    font-size: 0.9rem;
  }
  
  /* Featured section responsive adjustments */
  .featured-section {
    padding: 4rem 0;
  }
  
  .featured-subtitle-line {
    font-size: 2rem;
    padding: 0.4rem 1rem;
    margin-left: 5%;
  }
  
  .featured-title {
    padding-left: 5%;
    margin-bottom: 4rem;
  }
  
  .title-featured,
  .title-work {
    font-size: 3rem;
  }

}

@media (max-width: 768px) {
    .status-section {
        padding: 5rem 0;
    }
    
    .status-container {
        padding: 0 1rem;
    }
    
    .status-table-wrapper {
        padding: 1.5rem;
    }
    
    .status-table thead th {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }
    
    .status-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .status-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }
}


.go-to-portfolio {
  position: relative;
  margin: 4rem auto 0 auto;  /* Changed from margin: 0 1rem */
  z-index: 9;
  border: 3px solid #f44336;
  background-color: #f44336;
  color: #fff !important;
  cursor: pointer;
  padding: 1rem;    
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(2deg);
  box-shadow: 0 6px 12px rgba(244, 67, 54, 0.5);
  border-radius: 0.6rem;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  width: fit-content;      /* Changed from auto */
  display: block;         /* Changed from inline-block */
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  -moz-text-decoration: none !important;
  transform-origin: center;
  
  
}

.go-to-portfolio:hover,
.go-to-portfolio:focus {
  background-color: #d32f2f;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.7);
  transform: rotate(0deg) scale(1.05);
  outline: none;
}

a {
    color: #fff !important;
  text-decoration: none !important;


}

.go-to-portfolio:active {
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.5);
}


@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.note {
  margin-top: 1.7rem;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.footer-copyright {
 text-align: center;
  flex: 1;
  color: #ffffff;
  font-size: 1.2rem;
}

.social-icon {
    font-size: 30px;
    color: #e7e7e7;
    transition: all 0.4s ease;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon:hover {
    color: #b9b9b9;
    transition: all 0.4s ease;
    transform: scale(1.2)
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: #e7e7e7;
}

.form-free-text {
  font-size: 1rem;
  margin-top: 2rem;
  margin-left: 1rem;
}




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

.openPopupBtn {
  position: relative;
  margin: 0 1rem; 
  z-index: 99;
  border: 3px solid #f44336;
  background-color: #f44336;
  color: #fff;
  cursor: pointer;
  padding: 0.85rem 1rem;    
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
  box-shadow: 0 6px 12px rgba(244, 67, 54, 0.5);
  border-radius: 0.6rem;
  outline: none;
  flex-shrink: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  width: auto;         
  max-width: 500px;     
  display: block;       
  margin-left: auto;    
  margin-right: auto;  
}

.openPopupBtn:hover,
.openPopupBtn:focus {
  background-color: #d32f2f;
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.7);
  transform: rotate(0deg) scale(1.05);
  outline: none;
}

.openPopupBtn:active {
  transform: rotate(-1deg) scale(0.98);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.5);
}


.openPopupBtn:hover {
    transform: scale(1.1) rotate(-2deg);
    transition: all 0.4s ease;
}

.templates-button {
  position: relative;
  margin: 0 1rem;
  z-index: 99;
  border: 3px solid #e04136;
  background-color: #f44336;
  color: #fff;
  cursor: pointer;
  padding: 0.85rem 2.25rem;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0.6rem;
  outline: none;
  flex-shrink: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.templates-button:hover,
.templates-button:focus {
  background-color: #d32f2f;
  box-shadow: 0px 0px 30px rgba(211, 47, 47, 0.7);
  transform: rotate(0deg) scale(1.05);
  outline: none;
}

.templates-button:active {
  transform: scale(0.98);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.5);
}


/* Go Back Button */
.go-back-btn {
    position: relative;
    margin: 4rem 1rem 2rem 1rem;
    z-index: 99;
    border: 3px solid #f44336;
    outline: none;
    background-color: #f44336;
    color: #fff;
    cursor: pointer;
    padding: 0.7rem 2rem;
    font-size: 1.15rem;
    font-weight: 900;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.go-back-btn:hover {
    transform: scale(1.1) rotate(-2deg);
    transition: all 0.2s ease;
}

.service-item.service-2 {
  align-items: center;
  gap: 5rem; 
}
.service-item.service-4 {
  align-items: center;
  gap: 5rem; 
}

.popup-content {
background-color: #dc2626;
margin: 10% auto;
padding: 20px;
width: 550px;
border-radius: 8px;
position: relative;
text-align: center;
box-shadow: 8px rgba(0, 0, 0, 0.3);
}

.popup-text li {
  margin-bottom: 10px; /* space between items */
    list-style: none;
    font-weight: 650;
}

.close-btn {
cursor: pointer;
position: absolute;
font-size: 18px;
right: 15px;
top: 10px;
}



.featured-section {
  margin-bottom: 7%;
  padding-top: 6rem;
}

.featured-subtitle-line {
  position: relative;
  display: inline-block;
  font-weight: 650;
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 100, 100, 0.8);
  margin-bottom: 1.2rem;
  margin-left: 13%;
}

.featured-subtitle-line::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff5555, #6b0000);
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.8);
  border-radius: 3px;
}



.gotos {
  display: flex;
  justify-content: center;
  align-items: center;     
  gap: 15rem;              
  width: 100%;             
  margin-bottom: 13rem;     

}

.go-to-fsto {
    box-shadow: 0 0px 30px rgba(211, 47, 47, 0.6);

  background: #dc2626;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(-1deg);
  left: 18%;
}

.go-to-fsto:hover {
  background: #b91c1c;
  transform: rotate(0deg) scale(1.02);
}

/* Overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  flex-direction: column; /* כדי ליישר את התמונה במרכז */
}

#lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px black;
}

.clickable-img {
  cursor: pointer;
  display: block;
  max-width: 100%;
}

#lightbox-close{
    cursor: pointer;
      font-size: 2rem;
}

.sim-label {
  display: inline-flex;           /* centers text nicely */
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #a91717;
  color: white;
  font-size: 17px;                /* slightly larger text */
  font-weight: 600;
  padding: 2px 6px;               /* adjusted to fit text nicely */
  border-radius: 5px;
  margin-top: 5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.template-note {
  display: inline-block;           /* fits the text width */
  background-color: rgba(169, 23, 23, 0.9); /* semi-solid red to match your theme */
  color: white;
  font-size: 17px;
  font-weight: 500;
  padding: 6px 12px;              
  border-radius: 6px;             
  margin: 20px 0;                 
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
}


#mobileModal {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); 
  color: white;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}


#mobileModal .modalContent {
  max-width: 400px;
  background: rgba(30, 30, 30, 0.95); 
  padding: 20px;
  border-radius: 10px;
}

#closeModal {
  margin-top: 15px;
  padding: 10px 20px;
  background: #a91717;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.request-status {
  background-color: #7f1d1d33;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.request-status h2 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.request-status span {
  color: #ff5555;
}

.request-status p {
  font-size: 1.1rem;
  opacity: 0.9;
}
