* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-orange: #FF6B35; --dark-grey: #2C3E50; --medium-grey: #495057; --light-grey: #F8F9FA; --white: #FFFFFF; --gradient-start: #1a1a2e; --gradient-end: #16213e; --grid-line: rgba(255,255,255,0.07); } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif; font-size: 18px; line-height: 1.7; color: var(--dark-grey); background: var(--white); } .header { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); z-index: 1000; transition: all 0.3s ease; } .nav-container { max-width: 1400px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.8rem; font-weight: 700; color: var(--dark-grey); letter-spacing: -0.5px; } .logo-highlight { color: var(--primary-orange); } .nav-menu { display: flex; gap: 2.5rem; list-style: none; align-items: center; } .nav-link { color: var(--medium-grey); text-decoration: none; font-weight: 500; transition: color 0.3s ease; cursor: pointer; } .nav-link:hover { color: var(--primary-orange); } .lang-switcher { display: flex; gap: 0.5rem; margin-left: 1rem; padding-left: 1rem; border-left: 2px solid var(--light-grey); } .lang-btn { padding: 0.3rem 0.8rem; background: transparent; border: 1px solid var(--light-grey); border-radius: 4px; cursor: pointer; font-weight: 500; color: var(--medium-grey); transition: all 0.3s ease; } .lang-btn.active { background: var(--primary-orange); color: white; border-color: var(--primary-orange); } .lang-btn:hover:not(.active) { border-color: var(--primary-orange); color: var(--primary-orange); } .hero { min-height: 100vh; background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); display: flex; align-items: center; padding: 8rem 2.5rem 5rem; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; background: radial-gradient(circle at 22% 50%, rgba(255, 107, 53, 0.16) 0%, transparent 50%), radial-gradient(circle at 82% 80%, rgba(255, 107, 53, 0.10) 0%, transparent 50%); } .hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 75%); mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 75%); } .hero-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; } .hero-content { max-width: 800px; } .hero-subtitle { color: var(--primary-orange); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: 2px; text-transform: uppercase; } .hero-title { font-size: clamp(3rem, 6vw, 4.8rem); font-weight: 800; color: white; margin-bottom: 1.8rem; line-height: 1.08; } .hero-description { font-size: 1.5rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 3.5rem; max-width: 680px; } .cta-button { display: inline-block; padding: 1.2rem 3.4rem; background: var(--primary-orange); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.25rem; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); cursor: pointer; border: none; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4); } .hero-stats { display: flex; gap: 4.5rem; margin-top: 4.5rem; flex-wrap: wrap; } .stat-item { text-align: center; } .stat-number { font-size: 3.6rem; font-weight: 800; color: var(--primary-orange); } .stat-label { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; margin-top: 0.5rem; } .section { padding: 7rem 2.5rem; max-width: 1400px; margin: 0 auto; } .section-title { font-size: clamp(2.4rem, 4vw, 3.3rem); font-weight: 700; margin-bottom: 1.2rem; color: var(--dark-grey); text-align: center; line-height: 1.15; } .section-subtitle { font-size: 1.35rem; color: var(--medium-grey); text-align: center; margin-bottom: 4.5rem; max-width: 760px; margin-left: auto; margin-right: auto; } .orange-highlight { color: var(--primary-orange); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2.8rem; margin-top: 3rem; } .service-card { background: white; padding: 3.4rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.3s ease; position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-orange); transform: scaleX(0); transition: transform 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); } .service-card:hover::before { transform: scaleX(1); } .service-icon { font-size: 3.4rem; color: var(--primary-orange); margin-bottom: 1.6rem; } .service-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark-grey); } .service-description { color: var(--medium-grey); line-height: 1.8; font-size: 1.1rem; } .service-features { list-style: none; margin-top: 1.8rem; } .service-features li { padding: 0.6rem 0; color: var(--medium-grey); position: relative; padding-left: 1.6rem; font-size: 1.05rem; } .service-features li::before { content: '→'; position: absolute; left: 0; color: var(--primary-orange); font-weight: bold; } .team-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 4rem; } .team-member { background: var(--light-grey); border-radius: 20px; padding: 3.4rem; position: relative; overflow: hidden; } .team-member::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%); } .team-header { display: flex; align-items: flex-start; margin-bottom: 2rem; gap: 2rem; } .team-photo-placeholder { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%); display: flex; align-items: center; justify-content: center; font-size: 3.4rem; color: white; font-weight: 700; flex-shrink: 0; } .team-info h3 { font-size: 2.3rem; color: var(--dark-grey); margin-bottom: 0.5rem; } .team-role { color: var(--primary-orange); font-weight: 600; font-size: 1.25rem; margin-bottom: 0.5rem; } .team-capacity { color: var(--medium-grey); font-size: 0.95rem; } .team-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .highlight-item { background: white; padding: 1.5rem; border-radius: 12px; border-left: 4px solid var(--primary-orange); } .highlight-title { font-weight: 700; color: var(--dark-grey); margin-bottom: 0.5rem; font-size: 0.9rem; } .highlight-value { color: var(--medium-grey); font-size: 0.95rem; } .team-description { color: var(--medium-grey); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.1rem; } .team-skills { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; } .skill-tag { background: white; padding: 0.7rem 1.4rem; border-radius: 25px; color: var(--medium-grey); font-size: 1rem; font-weight: 500; border: 1px solid rgba(0,0,0,0.1); } .linkedin-link { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 2rem; color: var(--primary-orange); text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .linkedin-link:hover { gap: 1.2rem; } .raum18-section { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); padding: 0; position: relative; overflow: hidden; } .raum18-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; } .raum18-content { padding: 6rem 4rem; color: white; display: flex; flex-direction: column; justify-content: center; } .raum18-badge { display: inline-block; background: var(--primary-orange); color: white; padding: 0.5rem 1.5rem; border-radius: 25px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; width: fit-content; } .raum18-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; } .raum18-subtitle { font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 2.5rem; line-height: 1.6; } .raum18-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; } .raum18-feature { display: flex; align-items: flex-start; gap: 1rem; } .raum18-feature-icon { width: 40px; height: 40px; background: rgba(255, 107, 53, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-orange); flex-shrink: 0; } .raum18-feature-text { flex: 1; } .raum18-feature-title { font-weight: 600; margin-bottom: 0.3rem; } .raum18-feature-desc { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; } .raum18-buttons { display: flex; gap: 1rem; flex-wrap: wrap; } .raum18-btn-primary { padding: 1rem 2.5rem; background: var(--primary-orange); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.8rem; box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); } .raum18-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4); } .raum18-btn-secondary { padding: 1rem 2.5rem; background: rgba(255, 255, 255, 0.1); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; border: 2px solid rgba(255, 255, 255, 0.3); } .raum18-btn-secondary:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); } .raum18-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 0; } .raum18-image { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; } .raum18-image-wrapper { overflow: hidden; position: relative; } .raum18-image-wrapper::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(255, 107, 53, 0.3) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; } .raum18-image-wrapper:hover::after { opacity: 1; } .raum18-image-wrapper:hover .raum18-image { transform: scale(1.1); } @media (max-width: 968px) { .raum18-container { grid-template-columns: 1fr; } .raum18-content { padding: 4rem 2rem; } .raum18-gallery { min-height: 400px; } .raum18-features { grid-template-columns: 1fr; } } .contact-container { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); border-radius: 30px; padding: 4rem; color: white; position: relative; overflow: hidden; } .contact-container::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%); } .contact-content { position: relative; z-index: 1; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; } .contact-info { display: flex; flex-direction: column; gap: 2rem; } .contact-item { display: flex; align-items: flex-start; gap: 1.5rem; } .contact-icon { font-size: 1.8rem; color: var(--primary-orange); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(255, 107, 53, 0.1); border-radius: 12px; flex-shrink: 0; } .contact-details h4 { font-size: 1.1rem; margin-bottom: 0.5rem; } .contact-details p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; } .footer { background: var(--dark-grey); color: white; padding: 4rem 2.5rem 2.5rem; position: relative; overflow: hidden; } .footer::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 70%); mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 70%); } .footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; position: relative; z-index: 1; } .footer-section h4 { margin-bottom: 1.5rem; color: var(--primary-orange); font-size: 1.2rem; } .footer-section p, .footer-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; line-height: 2; font-size: 1.05rem; } .footer-section a:hover { color: var(--primary-orange); } .footer-bottom { text-align: center; padding-top: 2rem; margin-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); position: relative; z-index: 1; } .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark-grey); cursor: pointer; } .mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh; background: white; box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 1001; padding: 2rem; overflow-y: auto; } .mobile-menu.active { right: 0; } .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--light-grey); } .mobile-menu-close { background: none; border: none; font-size: 1.5rem; color: var(--dark-grey); cursor: pointer; } .mobile-menu-items { list-style: none; } .mobile-menu-items li { margin-bottom: 1.5rem; } .mobile-menu-items a { color: var(--dark-grey); text-decoration: none; font-size: 1.2rem; font-weight: 500; display: block; padding: 0.5rem 0; transition: color 0.3s ease; } .mobile-menu-items a:hover { color: var(--primary-orange); } .mobile-lang-switcher { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--light-grey); } .mobile-lang-label { font-weight: 600; color: var(--dark-grey); margin-bottom: 1rem; display: block; } .mobile-lang-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; } .mobile-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); z-index: 1000; display: none; } .mobile-overlay.active { display: block; } @media (max-width: 968px) { .hero-title { font-size: 3rem; } .hero-stats { gap: 2rem; } .stat-number { font-size: 2rem; } .team-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 3rem; } .nav-menu { display: none; } .lang-switcher { display: none; } .mobile-menu-btn { display: block; } .services-grid { grid-template-columns: 1fr; } } @media (max-width: 640px) { .hero-title { font-size: 2.2rem; } .hero-description { font-size: 1.1rem; } .section-title { font-size: 2rem; } .contact-container { padding: 2rem; } .team-header { flex-direction: column; align-items: center; text-align: center; } } .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 2rem; animation: fadeIn 0.3s ease; } .modal-overlay.active { display: flex; } .modal-content { background: white; border-radius: 20px; max-width: 800px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); animation: slideUp 0.3s ease; } .modal-header { background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); padding: 2rem 3rem; border-radius: 20px 20px 0 0; position: sticky; top: 0; z-index: 10; } .modal-title { font-size: 2rem; font-weight: 700; color: white; margin: 0; } .modal-close { position: absolute; top: 2rem; right: 2rem; background: rgba(255, 255, 255, 0.2); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: white; font-size: 1.5rem; } .modal-close:hover { background: var(--primary-orange); transform: rotate(90deg); } .modal-body { padding: 3rem; } .modal-body h3 { color: var(--dark-grey); font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-orange); } .modal-body h3:first-child { margin-top: 0; } .modal-body p { color: var(--medium-grey); line-height: 1.8; margin-bottom: 1rem; } .modal-body strong { color: var(--dark-grey); } .modal-body a { color: var(--primary-orange); text-decoration: none; } .modal-body a:hover { text-decoration: underline; } html { scroll-behavior: smooth; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .fade-in-up { animation: fadeInUp 0.6s ease-out; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
 .service-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.7rem 1.6rem; background: var(--primary-orange); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25); } .service-link:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35); } .service-link i { transition: transform 0.3s ease; } .service-link:hover i { transform: translateX(3px); }
