@font-face {
    font-family: 'FS Industrie Wide';
    src: url("../fonts/FS-Industrie-Wd-Bold.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FS Industrie Wide', sans-serif;
    overflow-x: hidden;
}

/* Content Sections */
.content-section {
    padding: 6vh 10vw;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vh;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 3vh;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.two-column.visible {
    opacity: 1;
    transform: translateY(0);
}

.column-content {
    padding: 2vh;
}

.column-content h3 {
    font-size: 3vh;
    color: #e53e3e;
    margin-bottom: 1.5vh;
}

.column-content p {
    font-size: 1.8vh;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2vh;
}

.column-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 55vh;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Button */
.project-button {
    display: inline-block;
    padding: 1vh 2vh;
    background: #e53e3e;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.5vh;
}

.project-button:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2vh;
    }

    .column-image {
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2vh;
    }
}
