body { margin:0; font-family:'Poppins', sans-serif; background:#0a0a0a; color:#f5f5f5; scroll-behavior:smooth; }
nav { position:fixed; width:100%; background:rgba(0,0,0,0.8); padding:1em 0; z-index:100; backdrop-filter:blur(8px); }
nav ul { list-style:none; display:flex; justify-content:center; gap:2.5em; margin:0; padding:0; }
nav a { color:#f5f5f5; text-decoration:none; font-weight:400; letter-spacing:1px; transition:color 0.3s; }
nav a:hover { color:#ff6347; }

#hero { height:100vh; background:url('https://images.unsplash.com/photo-1520975918311-63c1ccdbb5eb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; display:flex; align-items:center; justify-content:center; text-align:center; position:relative; }
#hero::after { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); }
.hero-content { position:relative; z-index:1; animation:fadeIn 2s ease-in-out; }
#hero h1 { font-family:'Playfair Display', serif; font-size:3.5em; font-weight:700; letter-spacing:2px; }
#hero h1 .brand { font-style:italic; font-weight:300; font-size:0.6em; display:block; margin-top:0.5em; color:#cccccc; }
.hero-tagline { margin-top:1em; font-size:1.3em; font-weight:300; color:#cccccc; animation:fadeUp 2s ease-in-out; }
#hero .btn { margin-top:1.5em; padding:0.8em 1.8em; background:linear-gradient(135deg,#ff6347,#b76e79); color:white; border:none; cursor:pointer; font-weight:500; letter-spacing:1px; transition: transform 0.3s, box-shadow 0.3s; }
#hero .btn:hover { transform:scale(1.1); box-shadow:0 5px 15px rgba(0,0,0,0.5); }

#about { padding:6em 2em; background:#0e0e0e; color:#f5f5f5; text-align:center; }
.about-content { max-width:800px; margin:0 auto; animation:fadeUp 1.2s ease-in-out; }
#about h2 { font-family:'Playfair Display', serif; font-size:2.2em; font-weight:700; text-transform:uppercase; margin-bottom:0.5em; }
.highlight { color:#ff6347; }
.divider { width:80px; height:3px; background:linear-gradient(to right,#ff6347,#b76e79); margin:0 auto 1.5em; border-radius:2px; }
#about p { font-size:1.1em; line-height:1.8; color:#cccccc; font-weight:300; }

#gallery { padding:5em 2em; text-align:center; background:#121212; }
#gallery h2 { font-family:'Playfair Display', serif; font-size:2em; font-weight:700; margin-bottom:0.5em; }
.gallery-container { display:flex; flex-wrap:wrap; justify-content:center; gap:1.5em; margin-top:2em; }
.gallery-item { width:250px; height:250px; overflow:hidden; border-radius:10px; display:flex; align-items:center; justify-content:center; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s, filter 0.4s, box-shadow 0.3s; }
.gallery-item:hover img { transform:scale(1.08) rotate(-1deg); filter:brightness(1); box-shadow:0 8px 20px rgba(0,0,0,0.5); }

#contact { padding:5em 2em; background:#0e0e0e; text-align:center; }
#contact form { display:flex; flex-direction:column; gap:1em; max-width:400px; margin:0 auto; }
#contact input, #contact textarea { padding:0.8em; background:#1a1a1a; color:#fff; border:1px solid #333; border-radius:5px; transition:0.3s; }
#contact input:focus, #contact textarea:focus { border-color:#ff6347; box-shadow:0 0 8px rgba(255,99,71,0.5); outline:none; }
#contact button { padding:1em; border:none; background:#ff6347; color:white; cursor:pointer; font-weight:500; transition: transform 0.3s; }
#contact button:hover { transform:scale(1.05); }
.success-message { display:none; color:#ff6347; margin-top:0.5em; font-weight:500; }

footer { text-align:center; padding:2em; background:#000; color:#888; font-size:0.9em; }
footer .social-icons { display:flex; justify-content:center; gap:1em; margin-bottom:1em; }
footer .social-icons a svg { width:24px; height:24px; fill:#fff; transition: transform 0.3s, fill 0.3s; }
footer .social-icons a:hover svg { transform:scale(1.2); fill:#ff6347; }

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes fadeUp { from {opacity:0; transform:translateY(40px);} to {opacity:1; transform:translateY(0);} }

@media(max-width:768px) {
    #hero h1 { font-size:2.5em; }
    .hero-tagline { font-size:1em; }
    .gallery-item { width:180px; height:180px; }

