/* BODY */
body {
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.header {
    background: linear-gradient(90deg, #1a1a2e, #16213e);
    padding: 0 1.5rem;
}

.header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

/* LOGO */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* MENU RIGHT ALIGN */
.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: left;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV MENU ── */
.menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.login-btn, .register-btn {
    font-size: 0.85rem !important;
    padding: 0.4rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 500;
}

.login-btn  { border: 1px solid rgba(255,255,255,0.4) !important; }
.register-btn { background: #e94560 !important; color: #fff !important; }
.register-btn:hover { background: #c73652 !important; }

/* ── USER DROPDOWN ── */
.user-menu {
    position: relative;
}

.user-icon {
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0.4rem 0.75rem;
    display: inline-block;
    border-radius: 6px;
    transition: background 0.2s;
}

.user-icon:hover { background: rgba(255,255,255,0.1); }

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top:100% ;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    min-width: 150px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.user-menu:hover .user-dropdown { display: block; }

.user-dropdown a {
    display: block;
    color: #ccc !important;
    padding: 0.65rem 1rem !important;
    border-radius: 0 !important;
    font-size: 0.875rem !important;
}

.user-dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff !important; }

/* ── MOBILE OVERLAY ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
}

.nav-overlay.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: 150px;
        
        
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #16213e;
        padding: 80px 1.25rem 2rem;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    }

    .menu.open { right: 0; }

    .menu a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        color: #ddd;
    }

    .login-btn, .register-btn {
        margin-top: 0.5rem;
        border-radius: 8px !important;
        text-align: center;
        width: 100%;
    }

    /* Mobile user dropdown — always visible, no hover needed */
    .user-menu { width: 100%; }
    .user-icon { display: block; width: 100%; padding: 0.75rem 1rem; }
    .user-dropdown {
        display: block;
        position: static;
        border: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        margin-top: 4px;
    }
    .user-dropdown a {
        padding: 0.6rem 1rem 0.6rem 1.5rem !important;
    }
}

/* HERO */
.hero {
    height: 300px;
    background: url('/cropped-slider.webp') center/cover no-repeat;
    
}

.hero::before {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
}



/* TAB MENU */
.tab-menu {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
   
}

.tab-btn {
    display: inline-block;
    background: #f39c12;
    color: #000;
    padding: 10px 20px;
    margin: 5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

.tab-btn:hover {
    background: #d68910;
    color: #fff;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

/* GALLERY */
.gallery {
    padding: 40px;
}

/* TITLE */

/* GRID (PROFESSIONAL FIXED) */
/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

/* GRID ITEM (RECTANGLE FIXED) */
.grid-item {
    width: 100%;

    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 250px;
}

/* IMAGE */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
 
}

/* IMAGE HOVER */
.grid-item:hover img {
    transform: scale(1.05);
}

/* OVERLAY (CENTER POPUP) */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s ease;

 
}

/* HOVER EFFECT */
.grid-item:hover .overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid-item {
        height: 260px;
    }
}

@media(max-width: 600px){
    .grid {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 column */
        gap: 10px;
    }

    .grid-item {
        height: 180px; /* optional: thoda compact */
    }
}

/* HEADER FIX */
@media(max-width: 600px){
    .header .container {
        padding: 10px 15px;
    }
}
.album-title {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #222;
    position: relative;
    padding-left: 0px;
}

/* BLUE PIPE */
.album-title::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff; /* blue color */
    font-size: 22px;
    font-weight: bold;
}

.album-title::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}

@media (max-width: 767px) {

    .tab-menu {
        position: static !important;
        top: auto !important;
    }

    .tab-menu .container {
        display: block !important;
        padding: 0 20px;
        text-align: unset !important;
    }

    .tab-btn {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px;
        background: #e79c1a;
        color: #000 !important;
        padding: 12px;
        text-align: center;
        font-weight: 600;
        border-radius: 2px;
    }

    .tab-btn.active {
        background: #d68910;
    }

}
.download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

.download-btn:hover {
    background: #0056b3;
}

.grid-item {
    position: relative;
}

.overlay-options {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.main-download {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown {
    display: none;
    margin-top: 5px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.dropdown a:hover {
    background: #f1f1f1;
}

/* SHOW ON HOVER */
.overlay-options:hover .dropdown {
    display: block;
}

/* 🔥 RESPONSIVE DESIGN */

/* TABLET */
@media (max-width: 768px) {

    .download-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .main-download {
        padding: 6px 12px;
        font-size: 12px;
    }

    .dropdown a {
        font-size: 12px;
        padding: 7px 10px;
    }
}

/* MOBILE */
@media (max-width: 480px) {

    /* BUTTONS FULL WIDTH STYLE */
    .overlay-options {
        left: 8px;
        bottom: 8px;
    }

    .download-btn {
        right: 8px;
        bottom: 8px;
        font-size: 11px;
        padding: 5px 8px;
    }

    .main-download {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* IMPORTANT: HOVER WORK NAHI KARTA MOBILE PE */
    .overlay-options .dropdown {
        display: none;
        position: absolute;
        bottom: 40px;
        left: 0;
    }

    /* ACTIVE CLASS (JS se toggle karenge) */
    .overlay-options.active .dropdown {
        display: block;
    }
    
    .grid-item {
    position: relative;
    height: 250px;
}
}
.login-btn {
    background: transparent;
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 5px;
    margin-left: 10px;
}

/* REGISTER BUTTON */
.register-btn {
    background: #f39c12;
    padding: 6px 12px;
    border-radius: 5px;
    margin-left: 5px;
    color:#000 !important;
}

/* USER MENU */
.user-menu {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.user-icon {
    cursor: pointer;
    font-size: 18px;
}

/* DROPDOWN */
.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    color:#000;
    min-width: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.user-dropdown a {
    display: block;
    padding: 10px;
    color:#000;
    text-decoration: none;
}

.user-dropdown a:hover {
    background: #f1f1f1;
}

/* HOVER */
.user-menu:hover .user-dropdown {
    display: block;
}

.auth-container{
    display:flex;
    justify-content:center;
    align-items:center;
    height:80vh;
}

.auth-box{
    width:400px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.auth-box h2{
    margin-bottom:20px;
}

input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:6px;
    background:#007bff;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}

.switch{
    text-align:center;
    margin-top:15px;
    cursor:pointer;
    color:#007bff;
}

.msg{
    color:red;
    margin-bottom:10px;
}

.dashboard{
    display:flex;
}

/* SIDEBAR */
.sidebar{
    width:250px;
    background:#111;
    color:#fff;
    height:100vh;
    padding:20px;

}

.sidebar h2{
    margin-bottom:30px;
}

.sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin:10px 0;
    padding:10px;
    border-radius:5px;
}

.sidebar a:hover{
    background:#007bff;
}

/* CONTENT */
.content{
    flex:1;
    padding:30px;
}

.card{
    background:#fff;
    width:100%;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
}

table th, table td{
    padding:10px;
    border-bottom:1px solid #ddd;
}

/* IMAGE */
.img-thumb{
    width:80px;
    border-radius:6px;
}

.forgot-box{
    width:100%;
}

.step{
    margin-bottom:15px;
}

label{
    font-size:13px;
    color:#555;
    margin-bottom:5px;
    display:block;
}

input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:10px;
    font-size:14px;
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background: linear-gradient(135deg,#007bff,#0056b3);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}
button:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.container{
    max-width: 100%;
    margin: 60px auto;
    border-radius: 16px;
    /*box-shadow: 0 15px 40px rgba(0,0,0,0.1);*/
    padding: 40px;
   
    top: 65px; /* header height ke hisaab se */
    z-index: 900;
}

/* FLEX LAYOUT */
.content{
    /*display: flex;*/
    gap: 40px;
    align-items: center;
}

/* IMAGE SIDE */
.image-box{
    flex: 1;
    display: flex;
    justify-content: center;
}

/* IMAGE FIX */
.image-box img{
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* RIGHT SIDE */
.details{
    flex: 1;
}

/* MOBILE FIX */
@media(max-width:768px){
    .content{
        flex-direction: column;
    }

    .image-box img{
        max-width: 100%;
    }
}
/* DOWNLOAD COUNT */
.download-count{
    margin-top:10px;
    font-size:13px;
    color:#e74c3c;
    font-weight:bold;
}

/* RATING */
.rating{
    font-size:14px;
    margin-bottom:10px;
    color:#f39c12;
}

.rating span{
    color:#555;
    margin-left:5px;
}

/* TIMER */
.timer{
    background:#fff3cd;
    padding:10px;
    border-radius:8px;
    font-size:14px;
    margin:15px 0;
    font-weight:600;
    color:#856404;
}

/* ===== FOOTER ===== */
.footer{
    background:#0f172a;
    color:#cbd5f5;
    margin-top:50px;
    padding-top:40px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:0 20px;
}

.footer-col h3,
.footer-col h4{
    color:#fff;
    margin-bottom:15px;
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:8px;
}

.footer-col ul li a{
    color:#cbd5f5;
    text-decoration:none;
    font-size:14px;
}

.footer-col ul li a:hover{
    color:#38bdf8;
}

/* SUBSCRIBE BOX */
.subscribe-box{
    max-width: 320px;
}

/* TITLE */
.subscribe-box h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.subscribe-box p{
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* INPUT GROUP */
.input-group{
    display: flex;
    background: #1e293b;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* INPUT */
.input-group input{
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

/* BUTTON */
.input-group button{
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.input-group button:hover{
    background: #1d4ed8;
}

/* SOCIAL ICONS */
.social-icons{
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons .icon{
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

/* HOVER COLORS */
.social-icons .fb:hover{ background: #1877f2; }
.social-icons .insta:hover{ background: #e4405f; }
.social-icons .yt:hover{ background: #ff0000; }
.social-icons .globe:hover{ background: #10b981; }

/* MOBILE */
@media(max-width:576px){
    .subscribe-box{
        max-width: 100%;
    }
}

/* SOCIAL */
.social-icons{
    margin-top:15px;
}

.social-icons a{
    margin-right:10px;
    font-size:18px;
    text-decoration:none;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    padding:15px;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:30px;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }
}