body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

header nav {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #c084fc;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f9a8d4;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f9a8d4, #c084fc);
    color: white;
}

.hero .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #c084fc;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.hero .btn:hover {
    background: #c084fc;
    color: white;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
}

.gallery-item h3 {
    padding: 0.75rem;
    margin: 0;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup.translucent {
    background: rgba(0, 0, 0, 0.4);
}

.popup-content {
    background: #1f1b24;
    color: #f1f1f1;
    padding: 2rem;
    text-align: center;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    font-family: 'Inter', sans-serif;
}

.popup-content button {
    margin: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: #c084fc;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #f9a8d4;
}

.popup-content a {
    color: #f9a8d4;
    text-decoration: underline;

}



