:root {
    --orange-deep: #c4450c;
    --orange-burnt: #b13e0a;
    --orange-rich: #e2571c;
    --orange-muted: #d95b1a;
    --orange-glow: rgba(226, 87, 28, 0.25);
    --bg-dark: #0c0703;
    --surface-dark: #1a110a;
    --card-dark: #22180f;
    --border-glow: rgba(226, 87, 28, 0.4);
    --text-light: #faeedf;
    --text-dim: #d6bfa6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0f0a05;
    /*background: linear-gradient(135deg,#0f0a05,#351100);
    background-attachment: fixed;*/
    color: #f0e2d4;
    scroll-behavior: smooth;
    font-family: Poppins, sans-serif;
    /*background: linear-gradient(120deg,#000,#00000075), url(assets/bg.png);*/
    /*background: linear-gradient(120deg,rgba(0, 0, 0,0.95),rgba(255, 140, 0, 0.12)),url(assets/bg.png);
    backdrop-filter: blur(8px);
    background-size: cover;
    background-attachment: fixed;*/
}   

/****************************
            HEADER
****************************/
.header {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: #1A110AD9;
    backdrop-filter: blur(14px);
    border-radius: 80px;
    padding: 1rem 2rem;
    z-index: 1000000;
    transition: transform 0.4s;
    border: 1px solid #E2571C59;
    box-shadow: 0 12px 30px -10px #00000070;
}
.header.hidden {
    transform: translateX(-50%) translateY(-135%);
}
.header-vecii {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff9859, #e2571c);
    background-clip: text;
    color: transparent;
}
.logo i {
    background: none;
    color: var(--orange-rich);
    margin-right: 6px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #f0dfce;
    transition: 0.2s;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: var(--orange-rich);
    text-shadow: 0 0 5px rgba(226,87,28,0.4);
}
.hamburger{
    display: none;
    cursor: pointer;
    border-radius: 4px;
    padding: 2px;
    padding-right: 9px;
    padding-left: 9px;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}
/**************************
            MAIN
**************************/
main {
    margin-top: 0;
}
section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.hero {
    border-radius: 48px;
    margin: 2rem auto 0;
    padding: 3rem 2rem 4rem;
    backdrop-filter: blur(1px);
}
.hero-g {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.hero-text {
    flex: 1.2;
}
.hero-text h1,.hero-text a {
    font-size: 3.8rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--orange-rich);
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-decoration: none;
}
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 2rem;
}
.bttn {
    background: var(--orange-rich);
    border: none;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    color: #0c0703;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 18px rgba(199, 69, 20, 0.3);
}
.bttn:hover {
    background: #f0642a;
    transform: scale(1.02);
    box-shadow: 0 12px 22px rgba(226,87,28,0.5);
}
.robot {
    flex: 1;
    background: rgba(34, 24, 15, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-glow);
    transition: all 0.3s;
}
.robot img {
    border-radius: 24px;
    box-shadow: 0 12px 22px #d95a1a57;
    transition: opacity 0.4s ease;
    opacity: 1;
    width: 92%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.robot h3 {
    margin-top: 1rem;
    font-size: 1.7rem;
    font-weight: 600;
}
.robot-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.robot-controls button {
    background: var(--orange-rich);
    border: none;
    color: #0c0703;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s !important;
}
.robot-controls button:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 9px rgba(226,87,28,0.5);
}
.journey-sec {
    max-width: 1300px;
    width: 100%;
    background: rgba(18, 12, 8, 0.65);
    backdrop-filter: blur(4px);
    border-radius: 56px;
    padding: 3rem 2rem;
    border: 1px solid rgba(226, 87, 28, 0.35);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
}
.journey-tit {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Space Grotesk', monospace;
    background: linear-gradient(135deg, #ffa05e, var(--orange-rich));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.journey-tit i {
    background: none;
    color: var(--orange-rich);
    margin-right: 12px;
}
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--orange-rich), #ff914d, var(--orange-deep));
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(226,87,28,0.7);
    z-index: 1;
}
.timeline-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 67;
}
.timeline-vecc {
    width: calc(50% - 2.5rem);
    background: var(--card-dark);
    backdrop-filter: blur(8px);
    border-radius: 36px;
    padding: 1.6rem;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.timeline-vecc:hover {
    transform: translateY(-5px);
    border-color: var(--orange-rich);
    background: #2c1d12;
}
.timeline-item.left .timeline-vecc {
    margin-right: auto;
    text-align: right;
}
.timeline-item.right .timeline-vecc {
    margin-left: auto;
    text-align: left;
}
.datum{
    color: var(--orange-rich) !important;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.25rem !important;
    margin: 30px 10px 10px 0 !important;
}
.cisielko {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--orange-rich), #b13e0a);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #0f0a05;
    z-index: 67;
    border: 1px solid #ffa151;
}
.timeline-img {
    width: 100%;
    border-radius: 24px;
    background: #1a110a;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.timeline-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.timeline-vecc:hover .timeline-img img {
    transform: scale(1.02);
}
.text-block h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffaa66;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.text-block p {
    color: var(--text-dim);
    line-height: 1.5;
    font-size: 0.95rem;
    margin-top: 6px;
}
.text-block .icon {
    font-size: 1.3rem;
    color: var(--orange-rich);
}
.timeline-item.left .text-block h3 {
    justify-content: flex-end;
}
.timeline-item.right .text-block h3 {
    justify-content: flex-start;
}
.step-image img {
    max-height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 28px;
}
.aboutt {
    background: linear-gradient(125deg, #140e08, #0e0905);
    border-radius: 56px;
    padding: 3rem;
    border: 1px solid rgba(226,87,28,0.3);
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.about-left {
    flex: 1.5;
}
.about-left h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.about-left p {
    line-height: 1.6;
    color: #e2cfbc;
    margin-bottom: 1.2rem;
}
.about-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.orange{
    text-decoration: none;
    color: var(--orange-muted);
}
.darker{
    color: #a37b50;
    text-decoration: none;
}
.bold {
    font-weight: bold;
}
.glow {
  text-shadow: 
    0px 0px 5px  rgba(255, 94, 19, 0.7),
    0px 0px 15px rgba(255, 94, 19, 0.4),
    0px 0px 30px rgba(255, 94, 19, 0.25);
}
.our-school img{
    border-radius: 48px;
    padding: 1.3rem;
}
.footer{
    background: #0b0703;
    border-radius: 48px 48px 0 0;
    margin-top: 3rem;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(226,87,28,0.4);
}
.footer-up {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer-col h4 {
    color: var(--orange-rich);
    margin-bottom: 1rem;
    display: flex;
}
.footer-col a, .footer-col p {
    color: #c7af97;
    font-size: 1rem;
    font-weight: 500;
}
.social a {
    font-size: 0.85rem;
    margin-right: 1rem;
    display: flex;
    flex-direction: column;
}
.social a:hover {
    color: var(--orange-rich);
}
.footer-down {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a1f16;
    font-size: 0.8rem;
}
footer a:hover{
    color: var(--orange-rich);
}
@media (max-width: 900px) {
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-links{
        position: fixed;
        right: -120%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background: #1A110AD9;
        width: 42%;
        transition: 0.5s;
        border-radius: 28px;
        border: 1px solid #E2571C59;
    }
    nav {
        justify-content: space-between;
    }
    .nav-itemm {
        margin: 0 8px;
        padding: 8px 16px;
    }
    .nav-links.active{
        right: 0;
    }
    .hero-text h1,.hero-text a {
    font-size: 2.5rem;
    }
    .header {
    width: 94%;
    padding: 0.5rem 1.2rem;
    top: 15px;
    }
    .nav-links {
    gap: 1.2rem;
    }
    section {
    padding: 3rem 1.2rem;
    }
    .hero-g {
    flex-direction: column;
    }
    .about-flex {
    flex-direction: column;
    }
}
@media (max-width: 550px) {
    .container {
    flex-direction: column;
    gap: 8px;
    }
    .step-card {
    min-width: 130px;
    }
    .bttn {
    padding: 0.7rem 1.5rem;
    }
    .aboutt img {
        width: 100%;
        height: 100%;
    }
}
    @media (max-width: 800px) {
      .journey-sec {
        padding: 2rem 1rem;
      }
      .timeline::before {
        left: 24px;
        transform: none;
      }
      .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .timeline-vecc {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
      }
      .cisielko {
        left: 25px;
        transform: translateX(-50%);
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
      }
      .timeline-item.left .timeline-vecc,.timeline-item.right .timeline-vecc {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
      }
      .timeline-item.left .text-block h3 {
        justify-content: flex-start;
      }
      .section-title {
        font-size: 2rem;
      }
      .step-image img {
        max-height: 150px;
      }
    }
