/* =====================
RESET
===================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
position: relative;
background:
linear-gradient(
rgba(0, 0, 0, 0.78),
rgba(0, 0, 0, 0.78)
),
url("images/site-background.jpg") center center / cover no-repeat fixed;

color: #ffffff;
line-height: 1.6;
overflow-x: hidden;
}

/* =====================
HEADER
===================== */
header {
display: flex;
flex-direction: column;
align-items: center;
padding: 25px 20px;
background: #000;
border-bottom: 1px solid rgba(255, 0, 85, 0.4);
}

.logo img {
height: 192px;
width: auto;
margin-bottom: 15px;
filter:
drop-shadow(0 0 8px rgba(255, 0, 85, 0.7))
drop-shadow(0 0 20px rgba(255, 0, 85, 0.4));

/* fade edges into background */
-webkit-mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0.6) 75%,
rgba(0,0,0,0) 100%
);
mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0.6) 75%,
rgba(0,0,0,0) 100%
);
}

/* =====================
NAVIGATION
===================== */
header nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 18px;
}

nav a {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
position: relative;
}

nav a:hover {
color: #ff0055;
}

nav a::after {
content: "";
display: block;
width: 0%;
height: 2px;
background: #ff0055;
margin-top: 5px;
transition: width 0.3s ease;
}

nav a:hover::after {
width: 100%;
}

/* =====================
HERO
===================== */
.hero {
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
text-align: center;
}

/* HERO SIDE-BY-SIDE LAYOUT */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 40px;
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}

.hero-text {
text-align: left;
}

.hero-image img {
width: 100%;
max-width: 520px;
border-radius: 18px;
box-shadow: 0 0 40px rgba(255, 0, 85, 0.45);
}

/* MOBILE: stack cleanly */
@media (max-width: 900px) {
.hero {
grid-template-columns: 1fr;
text-align: center;
}

.hero-text {
text-align: center;
}
}

.hero h1 {
color: #ff0055;
font-size: 2.6rem;
margin-bottom: 20px;
text-shadow: 0 0 12px rgba(255, 0, 85, 0.6);
}

.hero p {
max-width: 900px;
margin: 0 auto 25px;
color: #cccccc;
}



/* =====================
BUTTON
===================== */
.btn {
display: inline-block;
padding: 14px 36px;
background: #ff0055;
color: #fff;
border-radius: 40px;
text-decoration: none;
font-weight: bold;
position: relative;
}

.btn::before {
content: "";
position: absolute;
inset: -6px;
border-radius: 40px;
background: rgba(255,0,85,0.4);
filter: blur(14px);
z-index: -1;
}

/* =====================
SECTIONS
===================== */
.section {
max-width: 1200px;
margin: 0 auto;
padding: 50px 20px;
text-align: center;
}

.section h1,
.section h2 {
color: #ff0055;
margin-bottom: 16px;
text-shadow: 0 0 10px rgba(255,0,85,0.5);
}

.section p {
max-width: 900px;
margin: 0 auto 16px;
color: #cccccc;
}

/* =====================
HIGHLIGHTS (HOME)
===================== */
.highlights {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
padding: 50px 20px;
max-width: 1200px;
margin: 0 auto;
}

.highlights div {
background: rgba(0,0,0,0.6);
padding: 22px;
border-radius: 16px;
border: 1px solid rgba(255,0,85,0.4);
display: flex;
flex-direction: column;
align-items: center;
}

.highlights img {
width: 200px;
height: 110px;
object-fit: cover;
margin-bottom: 12px;
border-radius: 12px;
}

/* =====================
GALLERY
===================== */
.gallery-section {
padding: 50px 20px;
text-align: center;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 24px;
}

.gallery-grid figure {
background: rgba(0,0,0,0.6);
padding: 14px;
border-radius: 14px;
border: 1px solid rgba(255,0,85,0.4);
}

.gallery-grid img {
width: 100%;
max-height: 160px;
object-fit: contain;
border-radius: 10px;
}

.gallery-grid figcaption {
margin-top: 10px;
font-size: 0.9rem;
color: #bbbbbb;
}

/* =====================
LIGHTBOX
===================== */
#lightbox {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.9);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}

#lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: 12px;
box-shadow: 0 0 40px rgba(255,0,85,0.6);
}

.lightbox-img {
cursor: zoom-in;
}

/* =====================
FOOTER
===================== */
footer {
padding: 25px 20px;
background: #000;
border-top: 1px solid rgba(255,0,85,0.4);
font-size: 0.9rem;
color: #888;
text-align: center;
}

/* =====================
MOBILE
===================== */
@media (max-width: 768px) {
.logo img {
height: 160px;
}

.hero h1 {
font-size: 2.1rem;
}

.highlights img {
width: 160px;
height: 90px;
}

.gallery-grid img {
max-height: 130px;
}
}

/* HERO IMAGE FADE INTO BACKGROUND */
.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
border-radius: 18px;
display: block;
}

/* Fade overlay */
.hero-image::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to right,
rgba(5,5,5,0.7) 0%,
rgba(5,5,5,0.45) 25%,
rgba(5,5,5,0.15) 50%,
rgba(5,5,5,0.05) 65%,
rgba(5,5,5,0) 100%
);
border-radius: 18px;
pointer-events: none;
}
/* =====================
NEON GLOW + SMOKE EFFECT
BACKGROUND ONLY
===================== */

body::before,
body::after {
content: "";
position: fixed;
inset: 0;
pointer-events: none;
z-index: -1;
}

/* NEON GLOW */
body::before {
background:
radial-gradient(
circle at 20% 30%,
rgba(255, 0, 120, 0.25),
transparent 55%
),
radial-gradient(
circle at 80% 40%,
rgba(120, 0, 255, 0.25),
transparent 55%
),
radial-gradient(
circle at 50% 80%,
rgba(255, 60, 0, 0.2),
transparent 60%
);
animation: neonPulse 8s ease-in-out infinite;
}

/* SMOKE LAYER */
body::after {
background:
radial-gradient(
ellipse at center,
rgba(255,255,255,0.04),
transparent 70%
);
animation: smokeDrift 18s linear infinite;
}

/* NEON PULSE */
@keyframes neonPulse {
0% { opacity: 0.35; }
50% { opacity: 0.55; }
100% { opacity: 0.35; }
}

/* SMOKE MOVEMENT */
@keyframes smokeDrift {
0% { transform: translateY(0) scale(1); }
50% { transform: translateY(-30px) scale(1.05); }
100% { transform: translateY(0) scale(1); }
}

/* =====================
CONTACT PAGE LAYOUT
===================== */

.contact-layout {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 60px;
align-items: center;
}

/* TEXT SIDE */
.contact-text {
text-align: left;
}

/* IMAGE SIDE */
.contact-image {
position: relative;
}

/* FADE IMAGE INTO BACKGROUND */
.contact-image img {
width: 100%;
max-width: 600px;
display: block;
margin: 0 auto;
border-radius: 18px;

/* Fade edges */
-webkit-mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0) 100%
);
mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0) 100%
);

box-shadow: 0 0 40px rgba(255,0,85,0.35);
}

/* MOBILE STACK */
@media (max-width: 900px) {
.contact-layout {
grid-template-columns: 1fr;
text-align: center;
}

.contact-text {
text-align: center;
}
}

/* =====================
FESTIVALS PAGE LAYOUT
===================== */

.festivals-layout {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 60px;
align-items: center;
}

/* TEXT SIDE */
.festivals-text {
text-align: left;
}

/* IMAGE SIDE */
.festivals-image {
position: relative;
}

/* FADE IMAGE INTO BACKGROUND */
.festivals-image img {
width: 100%;
max-width: 620px;
display: block;
margin: 0 auto;
border-radius: 18px;

/* Edge fade */
-webkit-mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0) 100%
);
mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 55%,
rgba(0,0,0,0) 100%
);

box-shadow: 0 0 45px rgba(255,0,85,0.35);
}

/* MOBILE */
@media (max-width: 900px) {
.festivals-layout {
grid-template-columns: 1fr;
text-align: center;
}

.festivals-text {
text-align: center;
}
}
.menu-intro {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
}

.menu-image img {
width: 100%;
border-radius: 20px;

/* Neon glow */
filter: drop-shadow(0 0 35px rgba(255, 0, 120, 0.45));

/* Fade into background */
-webkit-mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 60%,
rgba(0,0,0,0) 100%
);
mask-image: radial-gradient(
ellipse at center,
rgba(0,0,0,1) 60%,
rgba(0,0,0,0) 100%
);
}