/* Homepage Layout */
.container {
    display: flex;
    height: 100vh;
}

section {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Title at top */
    align-items: center;
    text-align: center;
    padding-top: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

section:hover {
    transform: scale(1.05);
}

/* Background Images */
.wood {
    background: url('images/woodworking.jpg') center/cover no-repeat;
}
.electric {
    background: url('images/electric.jpg') center/cover no-repeat;
}
.innovation {
    background: url('images/innovation.jpg') center/cover no-repeat;
}

/* Title Links */
section a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.8em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

section a:hover {
    background-color: #FFD700;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    section {
        height: 33.3vh;
    }
    section a {
        font-size: 1.4em;
    }
}