:root{
    --maroon:#7b1e3c;
    --gold:#f5c063;
    --dark:#14080c;
    --light:#fff6ec;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box
}
body{
    background:var(--light);
    font-family:Poppins,sans-serif;
    color:#222;
    overflow-x: hidden;
    overflow-y:visible;
}

/* ===== MUSIC POPUP (MOBILE FIRST) ===== */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup.hidden {
    display: none;
}

.popup-box {
    width: 100%;
    max-width: 340px;
    background: linear-gradient(145deg, #fff8e6, #fff);
    border-radius: 18px;
    padding: 24px 20px 26px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    animation: popupIn 0.45s ease;
}

/* Title */
.popup-box h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #8b0000;
}

/* Text */
.popup-box p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 22px;
}

/* Buttons container */
.popup-box button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* YES button */
#yesBtn {
    background: linear-gradient(135deg, #c99700, #f5c063);
    color: #4a2c00;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(245,192,99,0.5);
}

/* NO button */
#noBtn {
    background: transparent;
    color: #777;
    border: 1px solid #ddd;
}

/* Button interaction */
.popup-box button:active {
    transform: scale(0.97);
}

/* Entry animation */
@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map-btn {
  display: flex;
  align-items: center;
  border-radius: 14px;
  background: #f5c36a; 
  text-decoration: none;
  color: #000;
}

.map-btn img {
  margin-top: 4px;
  width: 34px;
  height: 34px;
}

/* ========== SOCAILS ========== */
.social-float {
    position: fixed;
    left: 9px;
    top: 11px;
    display: flex;
    flex-direction:row;
    gap: 12px;
    z-index: 9999;
}

.social-float img {
    width: 40px;
    height: 40px;
    border-radius: 80%;
    background-color: #f5c063;
    box-shadow: 0 0 12px rgba(245,192,99,0.6);
    transition: transform 0.3s ease;
}

.social-float img:hover {
    transform: scale(1.15);
}

.social-float-left {
    position: fixed;
    right: 9px;
    top: 11px;
    display: flex;
    flex-direction:row;
    gap: 12px;
    z-index: 9999;
}

.social-float-left img {
    width: 40px;
    height: 40px;
    border-radius: 80%;
    background-color: #f5c063;
    box-shadow: 0 0 12px rgba(245,192,99,0.6);
    transition: transform 0.3s ease;
}

.social-float-left img:hover {
    transform: scale(1.15);
}


/* ========== HERO ========== */
.logo-img{
    width: 250px;
    height: auto;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.8)),
        url("image/parag_background.png") center/cover no-repeat;
    display:block;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 2px 0 0px;
}

canvas#fireworks{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-content{
    margin: 0 auto;
    position:relative;
    z-index:2;
    max-width:900px;
    padding:2px;
}

.hero h1{
    font-family:"Noto Sans Gujarati",sans-serif;
    font-size:3rem;
    color:var(--gold);
    line-height:1.2;
}

.hero h2{
    font-size:1.8rem;
    font-weight:700;
}


.btn{
    padding:8px 11px;
    border-radius:40px;
    border:none;
    font-weight:600;
    cursor:pointer;
    text-decoration: none;
}

.btn-gold{
    border-radius: 8px;
    background:var(--gold);
    color:#000;
    text-decoration: none;
}

.btn-outline{
    border-radius: 40px !important;
}
/* ========== SECTIONS ========== */
section{
    margin:auto;
    padding:20px 20px;
}
.title{
    text-align:center;
    margin-bottom:auto;
}
.gujarati {
    font-family: 'Anek Gujarati', 'Noto Sans Gujarati', sans-serif;
    letter-spacing: .5px;
}
.glow-title{
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 25px rgba(255, 165, 0, 0.5),
        0 0 45px rgba(255, 140, 0, 0.4);
    animation: dandiyaGlow 3s infinite ease-in-out;
}
.highlights-section {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
}
.sponsors {
    display: grid;
    gap: 15px;
}
.sponsor-box{
    background: #fdf0d7;
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 25px rgba(255, 165, 0, 0.5),
        0 0 45px rgba(255, 140, 0, 0.4);
    animation: dandiyaGlow 3s infinite ease-in-out;
    border-radius:20px;
    padding:5px;
    color:black;
}
.marquee {
    margin-top: 13px;
    width: 100vw;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.marquee-content {
    display: flex;
    gap: 40px;
    width: max-content;
}
footer{
    background:var(--gold);
    color:var(--maroon);
    text-align:center;
    padding:2px !important;
    display: block !important;
}
.site-footer {
    flex-shrink: 0;
    white-space: nowrap;

    text-align: center;
    padding: 8px 12px;
    background: var(--gold);
    color: var(--maroon);
    box-sizing: border-box;
}
@media(max-width:768px){
    .hero{
        padding: 0px 0 0px;
    }
    .hero h1{
        font-size:2.2rem
    }
    .hero h2{
        font-size:1.5rem;
        font-weight:700;
    }
    section{
        padding:15px 16px
    }
    .title-row {
        justify-content: center;
        margin-top: 24px;
    }
    .title-row .back-link {
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 1000;
        padding: 8px 14px;
        font-size: 13px;
        background: #f6ece3;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .highlights-section {
        padding-bottom: 80px;
    }
    .title-spacer {
        display: none;
    }
}
@media(max-width:550px){
    .cta-row {
        flex-direction: column;
    }
}
#loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    pointer-events: none;
}
#loader img , .splash-text {
    width: 300px;
    animation: loaderPulse 1.8s ease-in-out infinite;
}


/* loading text */
/*#loader span {
    margin-top: 12px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: #ffd700;
}*/


@keyframes loaderPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
@keyframes dandiyaGlow {
    0% {
        text-shadow:
            0 0 10px rgba(255,215,0,.6),
            0 0 25px rgba(255,165,0,.4);
    }
    50% {
        text-shadow:
            0 0 20px rgba(255,215,0,.9),
            0 0 45px rgba(255,140,0,.8);
    }
    100% {
        text-shadow:
            0 0 10px rgba(255,215,0,.6),
            0 0 25px rgba(255,165,0,.4);
    }
}
/*these three classes are used in developer page*/
.detail-card{
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.detail-card img{
    width:100%;
    border-radius:12px;
    margin-bottom:12px;
}
.container{
    max-width:480px;
    margin:auto;
    padding:12px;
}

.cta-row{
    padding: 0px 12px;
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}
.cta-row .btn{
    text-decoration: none;
    font-size: 1rem;
}

.cta-row-gold {
    padding: 12px 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
}
.cta-row-gold a {
    flex: 1 1 0;
    text-align: center;
}
#pagination button {
    background: linear-gradient(135deg, #6b3e1e, #9c5a2b);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#pagination button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #8a4a24, #c06b35);
}

#pagination button:disabled {
    background: #e6d5c3;
    color: #9b7b63;
    cursor: not-allowed;
    box-shadow: none;
}

#pagination span , .global-font {
    font-family: "Cinzel", serif;
    color: #6b3e1e;
    letter-spacing: 0.5px;
}

.stall-row {
    transition: background 0.2s ease, transform 0.2s ease;
}

.stall-row:hover {
    background: #faf4ee;
    transform: translateX(2px);
}
.stall-arrow {
    transition: none;
}
.stall-row:hover .stall-arrow {
    color: #9c5a2b;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #6b3e1e;
    background: #f6ece3;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.back-link:hover {
    background: #ead9c8;
    transform: translateX(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}
.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.title-row .title {
    text-align: center;
    flex: 1;
}
.title-row .back-link {
    flex: 0 0 auto;
}
.title-spacer {
    width: 90px;
}
body.list-page,
body.stall-page {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
.splash-text {
    margin-top: 14px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0.95;
}
.title-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.title-inline h1 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.1;
}
.title-separator {
    color: #6b3e1e;
    font-size: 1.4rem;
    opacity: 0.7;
}
.wrap {
    overflow-wrap: anywhere;  
    word-break: break-word;   
    min-width: 0;            
}
@media (max-width: 768px) {
    .title-inline h1 {
        font-size: 1.35rem;
    }
    .title-separator {
        font-size: 1.2rem;
    }
}
.music-btn {
    /*position: fixed;*/
    top: 20px;          
    right: 20px;        
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    border: 2px solid #f5c063;
    color: #f5c063;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}


