body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to right, #1f1c2c, #928dab);
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    background: linear-gradient(145deg, #6b6b6b, #292929);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: linear-gradient(145deg, #ff5f6d, #ffc371);
    color: #000;
    transform: scale(1.1);
}


section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}


.gallery-item {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


footer {
    background: #111;
    color: #bbb;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 40px;
    border-top: 2px solid #444;
}
