@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: rgb(85, 214, 165);
    overflow-x: hidden;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.coming-soon {
    background-color: #000;
}

.details {
    background-color: #001a1a;
}

.projects {
    background-color: #000;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-box {
    width: 350px;
    background-color: #001a1a;
    border: 2px solid #55d6a5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.1s ease;
    box-shadow: 0 0 15px #55d6a54d;
}

.project-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(85, 214, 165, 0.6);
}

.project-image {
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-box:hover .project-image img {
    transform: scale(1.3);
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h5 {
    font-size: 22px;
    margin-bottom: 12px;
    color: rgb(85, 214, 165);
    text-shadow: 0 0 5px rgb(85, 214, 165, 0.5);
}

.project-info p {
    font-size: 14px;
    line-height: 1.4;
    color: #ccc;
}

.details-box {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.details-con {
    display: flex;
    gap: 10px;
}

.details-icon {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 50px;
    color: rgb(85, 214, 165);
    transition: all 0.1s ease;
    text-shadow: 0 0 5px rgb(85, 214, 165, 0.5);
    align-items: center;
}

.details-icon:hover {
    transform: scale(1.3);
    transform: translateY(-10px);
}

@media (max-width: 1200px) {
    .projects-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .project-box {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .project-box {
        width: 100%;
        max-width: none;
    }
}

.box {
    text-align: center;
    padding: 20px;
}

.title {
    font-size: 70px;
    text-shadow: 0 0 15px rgb(85, 214, 165);
    border-right: 2px solid rgb(85, 214, 165);
    white-space: nowrap;
    overflow: hidden;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgb(85, 214, 165); }
}

.bottom {
    font-size: 16px;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgb(85, 214, 165);
}

h2 {
    font-size: 49px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgb(85, 214, 165);
}

.info-block {
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: center;
}

h3 {
    font-size: 25px;
    margin-bottom: 1rem;
}

h4 {
    font-size: 58px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgb(85, 214, 165);
}

p {
    font-size: 17px;
    line-height: 1.6;
}

.footer, .footer p, .footer a {
    font-size: 15px !important;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 13px 0;
    background-color: rgba(0, 20, 20, 0.8);
    text-align: center;
}

.footer a {
    color: #0ff;
    border-bottom: 1px dotted #0ff;
    text-decoration: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(#000 50%, transparent 50%),
        linear-gradient(90deg, rgb(85, 214, 165), rgb(85, 214, 165) 1px, transparent 25%, transparent);
    background-size: 100% 6px, 6px 100%;
    pointer-events: none;
    animation: scanlines 0.2s linear infinite;
    opacity: 0.22;
}

@keyframes scanlines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 4px;
    }
}

.navbar {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 10px 0;
}

.nav-item {
    font-size: 20px;
    margin: 0 20px;
    text-shadow: 0 0 10px rgb(85, 214, 165);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-item {
        margin: 10px 0;
        font-size: 18px;
    }
}

