@charset "utf-8";
/* CSS Document */
 * {
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
     background: #d5e9d9;
     color: #000000;
     overflow-x: hidden;
     min-height: 100vh;
     font-weight: 400;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
/* Neural network lines */
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
}
/* Glassmorphism styles */
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
/* Enhanced Header */
 header {
     position: fixed;
     top: 20px;
     z-index: 100;
     width: 96%;
     max-width: 1200px;
     padding: 18px 35px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 header.scrolled {
     background: rgba(224, 163, 255, 0.12);
     backdrop-filter: blur(30px);
     border-color: rgba(224, 163, 255, 0.2);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(224, 163, 255, 0.1);
}
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 28px;
     font-weight: bold;
     background: #0b7c7b;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-decoration: none;
     animation: logoGlow 3s ease-in-out infinite;
     transition: all 0.3s ease;
     border-radius: 0px;
}
 .logo:hover {
     transform: scale(1.05);
}
 .logo-icon {
     width: 40px;
     height: 40px;
     filter: drop-shadow(0 0 10px #e0a3ff);
}
 @keyframes logoGlow {
     0%, 100% {
         filter: drop-shadow(0 0 10px #e0a3ff);
    }
     50% {
         filter: drop-shadow(0 0 20px #ff69b4);
    }
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 12px;
}
 .nav-links a {
     color: #000000;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     padding: 12px 20px;
     border-radius: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     letter-spacing: 0.02em;
}
 .nav-links a.active {
     color: #ffffff;
     background: linear-gradient(135deg, #2fb6b6, #0b7c7b);
     border: 1px solid #0b7c7b;
     text-shadow: 0 0 10px #0b7c7b;
     transform: translateY(-1px);
}
 .nav-links a.active::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #d62346, #4b1d3f, #ffffff, #d5e9d9);
     background-size: 400% 400%;
     border-radius: 17px;
     z-index: -2;
     animation: borderGlow 3s ease infinite;
}
.nav-links a.external-link::after {
    content: " ↗";
    font-size: 0.8em;
    vertical-align: super;
}
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
/* Mobile Menu */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
}
 .mobile-menu-toggle:hover {
     background: rgba(224, 163, 255, 0.1);
     box-shadow: 0 0 15px rgba(224, 163, 255, 0.3);
}
/* Mobile menu active state */
.mobile-nav a.active {
    background: linear-gradient(135deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.15));
    color: #0bc7cb;
    border: 1px solid #0bc7cb;
    box-shadow: 
        0 0 25px rgba(224, 163, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(224, 163, 255, 0.6);
}
 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
     transform: rotate(45deg) translate(9px, 9px);
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}
 .mobile-nav {
     position: fixed;
     top: 90px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 400px;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     display: none;
     flex-direction: column;
     gap: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 .mobile-nav.active {
     display: flex;
     animation: slideDown 0.3s ease-out;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}
 .mobile-nav a {
     color: #ffffff;
     text-decoration: none;
     padding: 15px 20px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     font-size: 1.1rem;
     transition: all 0.3s ease;
}
 .mobile-nav a:hover {
     background: rgba(224, 163, 255, 0.1);
     color: #e0a3ff;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
     transform: translateY(-2px);
}

/* Section 1: Modern Redesigned Hero */
 .hero {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 @keyframes heroGlow {
     0%, 100% {
         transform: translate(-50%, -50%) scale(1) rotate(0deg);
         opacity: 0.6;
    }
     50% {
         transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
         opacity: 1;
    }
}
 .hero-content {
     max-width: 1000px;
     padding: 80px 40px;
	 margin-top: 120px;
     animation: heroAppear 2.5s ease-out;
     position: relative;
     background: none;
     backdrop-filter: none;
     border: none;
     box-shadow: none;
     border-radius: 0;
}
 @keyframes heroAppear {
     from {
         opacity: 0;
         transform: translateY(60px) scale(0.96);
    }
     to {
         opacity: 1;
         transform: translateY(0) scale(1);
    }
}
 .hero-subtitle {
     font-size: 0.9rem;
     color: #0b7c7b;
     margin-bottom: 25px;
     opacity: 0;
     animation: slideInFromLeft 1.2s ease 0.3s forwards;
     text-transform: uppercase;
     letter-spacing: 0.4em;
     position: relative;
     display: inline-block;
     font-weight: 300;
}
 .hero-subtitle::before, .hero-subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40px;
     height: 1px;
     background: linear-gradient(90deg, transparent, #0b7c7b, transparent);
     animation: linePulse 3s ease infinite;
}
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}
 @keyframes slideInFromLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero h1 {
     font-size: clamp(2.2rem, 6vw, 4rem);
     margin-bottom: 30px;
     background: #0b7c7b;
     background-size: 300% 300%;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: modernGradient 8s ease infinite;
     line-height: 1.1;
     letter-spacing: -0.02em;
     font-weight: 800;
     text-shadow: none;
     opacity: 0;
     animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero-description {
     max-width: 700px;
     margin: 40px auto 50px;
     opacity: 0;
     animation: fadeInScale 1.2s ease 0.9s forwards;
     text-align: center;
}
 .hero-description p {
     font-size: 1.2rem;
     color: #0b7c7b;
     line-height: 1.7;
     margin-bottom: 0;
     font-weight: 300;
}
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .hero-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 40px;
     margin: 60px auto 50px;
     max-width: 640px;
     opacity: 0;
     animation: slideUpStagger 1.2s ease 1.2s forwards;
}
 .hero-stat {
     text-align: center;
     position: relative;
     padding: 20px;
     background: #2fb6b6;
     border: 3px solid #0b7c7b;
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     backdrop-filter: blur(10px);
}
 .hero-stat:hover {
     transform: translateY(-8px) scale(1.05);
     border-color: #0b7c7b;
     box-shadow: 0 20px 40px #0b7c7b;
}
 .hero-stat-number {
     font-size: 1.8rem;
     font-weight: 700;
     color: #0b7c7b;
     display: block;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
     margin-bottom: 8px;
}
 .hero-stat-label {
     font-size: 0.8rem;
     color: #0b7c7b;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 400;
}
 @keyframes slideUpStagger {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: buttonSlideUp 1.2s ease 1.5s forwards;
}
 @keyframes buttonSlideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(135deg, #2fb6b6, #0b7c7b);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
 .cta-button.secondary {
     background: transparent;
     border: 2px solid #0b7c7b;
     color: #000000;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.1);
}
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px #0b7c7b;
}
 .cta-button.secondary:hover {
     background: #0b7c7b;
     box-shadow: 0 12px 30px #0b7c7b;
}
/* Section 2: Diagonal Features */
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #0b7c7b;
     position: relative;
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 75%;
     height: 3px;
     background: linear-gradient(90deg, #2fb6b6, #0b7c7b);
     border-radius: 2px;
}
 .features-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
}
 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 60px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 80px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-visual {
     flex: 1;
     height: 300px;
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}
 .feature-visual img {
    height: 100%;
 }
 .feature-icon {
     font-size: 4rem;
     margin-bottom: 25px;
     background: linear-gradient(45deg, #ff0080, #8000ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #0b7c7b;
}
 .feature-content p {
     font-size: 1.1rem;
     color: #cccccc;
     line-height: 1.8;
}
/* Section 3: Enhanced Hexagonal Showcase */
 .showcase {
     padding: 150px 0;
     position: relative;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .hexagon {
     width: 220px;
     position: relative;
     margin: 20px;
     transition: all 0.4s ease;
}
 .hexagon:hover {
     transform: scale(1.1);
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
     border-radius: 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-inner {
     border-radius: 15px;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 1px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 1px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon h4 {
     color: #000000;
     font-weight: bold;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
     width: 100%;
     display: inline;
}
 .hexagon p {
     font-size: 0.95rem;
     color: #000000;
     line-height: 1.5;
     max-width: 140px;
     word-wrap: break-word;
     hyphens: auto;
     transition: all 0.4s ease;
}
 .hexagon img {
    max-width: 100%;
    max-height: 70%;
    max-height: 220px;
 }

/* Section 5: Contact */
 .contact {
     padding: 150px 0;
     position: relative;
}
 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}
 .contact-info {
     padding: 60px 40px;
     position: relative;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: 0;      /* au lieu de -50% */
  left: 0;     /* au lieu de -50% */
  width: 100%; /* au lieu de 200% */
  height: 100%;/* au lieu de 200% */
  z-index: -1;
}
 @keyframes pulse {
     0%, 100% {
         transform: scale(1);
         opacity: 0.5;
    }
     50% {
         transform: scale(1.1);
         opacity: 1;
    }
}
 .contact-form {
     padding: 50px 40px;
}
 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #000000;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #0b7c7b;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
}
 .form-group input::placeholder, .form-group textarea::placeholder {
     color: #888;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(45deg, #2fb6b6, #0b7c7b);
     border: none;
     border-radius: 10px;
     color: #000;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}
 .contact-info h3 {
     font-size: 2.5rem;
     color: #0b7c7b;
     margin-bottom: 30px;
}
 .contact-info p {
     font-size: 1.2rem;
     color: #0b7c7b;
     line-height: 1.7;
     margin-bottom: 30px;
}
 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 40px;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 15px;
     color: #0b7c7b;
     text-decoration: none;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
} 
 .social-links a::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}
 .social-links a:hover::before {
     left: 100%;
}
 .social-links a:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
} 
/* Footer */
 footer {
     text-align: center;
     padding: 60px 20px 40px;
     background: #2fb6b6;
     backdrop-filter: blur(20px);
}
 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
}
 .footer-links {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 30px;
     flex-wrap: wrap;
}
 .footer-links a {
     color: #000000;
     text-decoration: none;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     position: relative;
     padding: 8px 0;
}
 .footer-links a:hover {
     color: #e0a3ff;
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.5);
}
 .footer-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: linear-gradient(90deg, #e0a3ff, #ff69b4);
     transition: width 0.3s ease;
}
 .footer-links a:hover::after {
     width: 100%;
}
 .footer-copyright {
     color: #000000;
     font-size: 0.9rem;
     margin-bottom: 15px;
}
 .footer-design {
     color: #000000;
     font-size: 0.85rem;
     margin-top: 20px;
}
 .footer-design a {
     color: #000000;
     text-decoration: none;
     transition: all 0.3s ease;
}
 .footer-design a:hover {
     color: #000000;
     text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
/* Mobile Responsiveness */
 @media (max-width: 50vh) {
	 .feature-row {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row:nth-child(even) {
        flex-direction: column;
    }
	.feature-content {
    	flex: 0;
	}
    .feature-visual {
        height: 250px; /* Adjust the height for mobile view */
        width: 100%;
    }
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
    }

     .timeline-line {
         left: 30px;
    }
     .timeline-item, .timeline-item:nth-child(even) {
         justify-content: flex-start;
         padding-left: 80px;
         padding-right: 0;
    }
     .timeline-dot {
         left: 30px;
    }
     .timeline-content {
         max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}
 @media (max-width: 768px) {
     .hero-content {
         padding: 40px 20px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin: 40px auto 35px;
    }
     .hero-stat {
         padding: 15px;
    }
     .hero-stat-number {
         font-size: 1.5rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }    
    .hexagon-icon {
        font-size: 3.5rem; /* Larger icon */
        margin-bottom: 25px;
    }
    
    .hexagon p {
        font-size: 1.1rem; /* Larger text */
        max-width: 200px; /* More width for text */
        line-height: 1.6;
    }
    
    .hexagon-container {
        gap: 20px; /* Reduce gap since boxes are larger */
    }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 80px 0;
    }
     .timeline {
         padding: 60px 0;
    }
     .footer-links {
         gap: 20px;
         margin-bottom: 25px;
    }
     .footer-links a {
         font-size: 0.85rem;
    }
}
/* Enhanced scrollbar */
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.8);
     border-radius: 6px;
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #2fb6b6, #0bc7cb);
     border-radius: 6px;
     box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #2fb6b6, #0bc7cb);
     box-shadow: 0 0 15px rgba(255, 0, 128, 0.7);
}

.config-section { margin: 1.2rem 0; }
    label { font-weight: bold; margin-right: 0.8rem; }
    select, button {
      padding: 0.6rem 1rem;
      border-radius: 6px;
      border: 1px solid #ccc;
      background: white;
      cursor: pointer;
      font-size: 1rem;
    }
    button.active { background: #0b7c7b; color: white; border-color: #0b7c7b; }
    img {transition: opacity 0.3s; border-radius: 10px; }
    #price { font-size: 1.5rem; font-weight: bold; color: #333; margin-top: 1.2rem; }

.color-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.active {
  border-color: #0b7c7b;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}

.button-group {
  display: flex;
  gap: 12px;
}

.button-group button {
  border: 2px solid transparent;
  background: none;
  padding: 4px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}

.button-group button.active {
  border-color: #0b7c7b;
  background: rgba(0, 198, 255, 0.1);
  box-shadow: 0 0 10px #00c6ff66;
}

.color-swatch.active {
  border: 2px solid #0b7c7b;
  transform: scale(1.1);
}

/* Disposition horizontale des couleurs texte */
.text-color-swatches.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.text-color-swatches.horizontal .color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background-size: cover;
  transition: transform 0.2s, border-color 0.2s;
}

.text-color-swatches.horizontal .color-swatch.active {
  border-color: #00c6ff;
  transform: scale(1.1);
}

/* Champs de texte et sélecteurs */
#text-customization input[type="text"],
#text-customization select {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#font-size {
  width: 100%;
}

/* Force les feature-row à rester en 2 colonnes en paysage */
.features .feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.features .feature-content,
.features .feature-visual {
  flex: 1 1 45%;
  min-width: 300px;
}

/* En portrait : repasse vertical */
@media (max-width: 50vh) {
  .features .feature-row {
    flex-direction: column;
  }
}


  :root{ --tool-height:56px; }
  html,body{ height:100%; font-family:system-ui,Segoe UI,Roboto,Arial; }
  .toolbar{ position:fixed; left:0; right:0; top:0; height:var(--tool-height); display:flex; align-items:center; gap:8px; padding:8px 12px; z-index:1000; }
  .toolbar button{ cursor:pointer; }
  .container{ position:fixed; inset:var(--tool-height) 0 0 0; overflow:auto; }
  .stage{ position:relative; height:100%; background-size:cover; background-position:center;}

  .item{ position:relative; top:40px; left:40px; border:none; background:none; display:inline-block; }
  .item.selected{ outline:1px dashed #0078ff; }
  .item .content{ white-space:nowrap; user-select:none; cursor:move; display:inline-block; }

  .item .item-tools { position:absolute; top:-34px; right:0; display:none; background:rgba(255,255,255,0.95); border-radius:6px; padding:4px 6px; box-shadow:0 2px 5px rgba(0,0,0,0.12); }
  .item.selected .item-tools { display:flex; gap:6px; }
  .item-tools button { border:none; background:none; cursor:pointer; font-size:16px; padding:2px; }

  .resize-handle{ position:absolute; width:12px; height:12px; right:-6px; bottom:-6px; background:#fff; border:1px solid #666; border-radius:2px; cursor:se-resize; display:none; z-index:5; }
  .item.selected .resize-handle{ display:block; }

  .textControls{ display:none; position:fixed; left:50%; top:var(--tool-height); transform:translateX(-50%); background:rgba(255,255,255,0.95); box-shadow:0 2px 6px rgba(0,0,0,0.15); border-radius:8px; padding:8px 10px; z-index:2000; align-items:center; gap:12px; }
  .textControls.active{ display:flex; }
  .color-btn{ width:22px; height:22px; border-radius:50%; border:1px solid #ccc; cursor:pointer; }
  #colorPalette{ display:flex; gap:6px; }

  img.responsive{ max-width:none; height:auto; display:block; cursor:move; }

  .image-wrapper{margin-top: var(--tool-height); margin-bottom: var(--tool-height);}


/* Correction de la bande vide à droite sur mobile */
html, body {
  overflow-x: hidden !important;
}

.container, .stage {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

img, .item, .feature-visual, .image-wrapper {
  max-width: 100% !important;
}

/* Empêche tout décalage entre éléments lors du redimensionnement */
.stage {
  position: relative;
  display: block !important;
}

.stage .item {
  position: absolute !important;
  transform: translate(0, 0);
}

.stage img,
.stage .content {
  display: block;
}

.stage * {
  box-sizing: border-box;
}
.item {
  pointer-events: auto;
  z-index: 1;
}
.item.selected {
  z-index: 10; /* passe au-dessus des autres */
}

/* Empêche tout dépassement du cadre du bac à sable */
.stage {
  position: relative;
  overflow: hidden; /* cache ce qui dépasse */
}

/* Les images restent dans la zone visible */
.stage img.responsive {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Limite la position et la taille des éléments */
.stage .item {
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
}

  .pay-btn {
    background: #6772e5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
  }
  .pay-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  .pay-btn:hover:not(:disabled) {
    background: #5469d4;
  }

  #sandbox-wrapper {
    margin-top: 20px;
  }
  .stage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 20px auto;
    border: 1px dashed #bbb;
    overflow: hidden;
  }
  .item {
    position: absolute;
    cursor: move;
  }
  .item.selected {
    outline: 2px solid #007aff;
  }
  .resize-handle {
    width: 10px;
    height: 10px;
    background: #007aff;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nwse-resize;
  }
  .color-btn {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 1px solid #ccc;
    margin: 2px;
    cursor: pointer;
  }
  .toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }
  .actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

.product-card {
  display: flex;
  flex-direction: row; /* par défaut en paysage → image à gauche, infos à droite */
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap; /* permet de passer en colonne sur petit écran */
}

/* Image et description prennent environ la moitié de l'espace */
.feature-visual {
  flex: 1 1 300px; /* min-width 300px */
  height: 50vh;
}

/* Media query pour portrait / petits écrans */
@media (max-width: 50vh) {
  .product-card {
    flex-direction: column; /* empile image puis infos */
    align-items: center;
  }

  .feature-visual, .product-info {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.product-info .description {
  margin-bottom: 1rem;
  max-width: 45vw;
}

.product-info .price-select,
.product-info .btn {
  margin-top: 0.5rem;
}

#product-container {
    margin-top: 120px;
}
.personnalise{
    margin-top: 120px;
}
#top{
    margin-top: 120px;
}

img{
    object-fit: contain;
}
#black {
    color: #000;
}