/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Back Button Styling */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #960680;
    transform: scale(1.05);
}

/* Logo Container */
.logo-container {
    text-align: center;
    padding: 40px 20px;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.description {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Section Styling */
.brief, .challenges, .feedback, .mockups {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #960680;
    margin-bottom: 15px;
    font-weight: 600;
}

h3 {
    margin-top: 15px;
    color: #333;
    font-weight: 500;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Mockup Gallery Styling */
.mockup-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.mockup-gallery img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mockup-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.mockup-gallery a{
border: #960680 dotted 2px;
text-decoration: none;
padding: 1rem 1rem;
}
/* Fade-in Animation
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Responsive Design */
@media (max-width: 768px) {
    .back-button {
        top: 10px;
        left: 10px;
    }

    .mockup-gallery {
        flex-direction: column;
        align-items: center;
    }
}
