/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: "Shippori Antique", Arial, sans-serif;
    background-color: rgb(244, 244, 244);
    color: black;
    line-height: 1.6;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding:20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Description section styles */
.description-section {
    margin-bottom: 40px;
    text-align: left;
}

.description-section p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0;
}

/* Image Gallery Section */
.image-gallery {
    margin:10px 0 60px 0;
}

.image-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-column {
    flex: 1;
}

.image-link {
    padding:20px;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.image-info h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: bold;
}

.image-info .creators {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Main content styles */
main {
    margin-top: 40px;
}

.columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.column {
    flex: 1;
    padding: 20px;
}

.column h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid black;
}

.company-info p {
    margin-bottom: 15px;
}

.company-info p strong {
    font-weight: bold;
}

.company-info a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid gray;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.company-info a:hover {
    opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 5px 5px;
    }
    
    header h1 {
        font-size: 2em;
    }

    .image-columns h3 {
        font-size: 0.8em;
    }

    .image-info .creators {
        font-size: 0.7em;
    }
    
    .company-info p {
        font-size: 0.8em;
    }
    
    .description-section p {
        font-size: 0.85em;
    }
    
    .columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-gallery {
        padding: 0 15px;
    }
    
    .image-link {
        padding: 0;
    }
    
    .column {
        padding: 15px;
    }
}
