body { margin:0; font-family:'Georgia', serif; background:black; color:#facc15; text-align:center; }
h1 { font-size:3rem; margin-top:20px; text-shadow:0 0 10px gold; }
h2 { font-size:2rem; margin-bottom:10px; color:#fcd34d; text-shadow:0 0 8px gold; }
p { font-size:1.2rem; color:#fde68a; margin-bottom:40px; }
.gallery { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; padding:20px; max-width:1200px; margin:auto; }
.gallery img { width:100%; height:200px; object-fit:cover; border-radius:15px; cursor:pointer; transition:transform 0.3s; }
.gallery img:hover { transform:scale(1.05); }
.modal { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); display:none; justify-content:center; align-items:center; }
.modal-content { background:white; padding:20px; border-radius:15px; max-width:90%; max-height:90%; text-align:center; border:4px solid gold; }
.modal-content img { max-width:100%; max-height:70vh; border-radius:10px; margin-bottom:15px; }
.buttons { display:flex; justify-content:space-between; }
.buttons button, .buttons a { padding:10px 20px; font-size:1rem; border:none; border-radius:10px; cursor:pointer; background:black; color:gold; text-decoration:none; }
.buttons button:hover, .buttons a:hover { background:gold; color:black; }
