/* Base */
body {
    margin: 20px;
    font-family: 'Times New Roman', serif;
    background-color: #1F1F1F;
    color: #EDEDED;
    text-align: center;
}

/* Header */
.header {
    font-size: 20px;
    margin-top: 40px;
}

.header a:hover {
    color: #fff;
    text-shadow: 0 0 8px pink;
}

.divider {
    margin: 10px 0 20px;
    opacity: 0.8;
}

/* Navigation */
.navigation {
    position: sticky;
    top: 0;
    background-color: #1F1F1F;
    padding: 10px 0;
    z-index: 1000;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.navigation a {
    color: pink;
    text-decoration: none;
    font-size: 14px;
}

.navigation a:hover {
    color: #fff;
    text-shadow: 0 0 6px pink;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center; 
    gap: 10px;
    padding: 10px;
}

.gallery-item {
    width: 180px;
    border: 1px solid #444;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, border 0.2s ease;
}

.gallery-item:hover {
    border: 1px solid #777;
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    display: block;
}

.desc {
    padding: 10px;
    font-size: 13px;
}

/* About */
.about {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
}

.about img {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

/* Contact */
.container {
    max-width: 500px;
    margin: 60px auto;
    padding: 20px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #2A2A2A;
    color: white;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 6px pink;
}

/* Button */
input[type="submit"] {
    background-color: pink;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

input[type="submit"]:hover {
    background-color: #fff;
}
