/* ======================
   GLOBAL RESET
====================== */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    background: #f8fafc;
    margin: 0;
    padding: 0;
}

/* ======================
   HEADINGS
====================== */
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    text-decoration: solid;
}

/* ======================
   HEADING SIZES
====================== */
h1 {
    font-size: 42px;
    letter-spacing: -1px;
}

h2 {
    font-size: 34px;
    color: green;
}

h3 {
    font-size: 28px;
    color: green;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

/* ======================
   PARAGRAPH
====================== */
p {
    font-size: 16px;
    color: black;
    margin-bottom: 15px;
    text-align: justify;
}



/* ======================
   LINKS
====================== */
a {
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #009624;
}

/* ======================
   STRONG / BOLD
====================== */
strong {
    font-weight: 600;
}

.container .section{
background-color: grey;

}
.container mt-5{

margin-bottom: 20px;
}


.section-title {
    font-size: 32px;
    margin-bottom: 20px;
}



/* ======================
   NAVBAR (MODERN)
====================== */
.custom-navbar {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.navbar-brand span {
    font-size: 20px;
    font-weight: 600;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #00c6ff !important;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
    color: green !important;
    transform: scale(1.1);   /* zoom */
    font-weight: 600;
}

/* ACTIVE MENU */
.navbar-nav .nav-link.active {
    color: green !important;
    font-weight: bold;
}

/* ANIMATED UNDERLINE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #00c6ff;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ======================
   BUTTONS
====================== */
.btn {
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-success {
    background: #00c853;
    border: none;
}

.btn-success:hover {
    background: #009624;
}

/* ======================
   SECTIONS
====================== */
.section {
    padding: 20px 0;
}


/* ======================
   CARDS (ARTISTS)
====================== */
.artist-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.artist-card img {
    object-fit: cover;
}

.card-body h5 {
    font-size: 18px;
    font-weight: 600;
}

/* ======================
   GALLERY
====================== */
.gallery-img {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* ======================
   FORMS
====================== */
.form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}



/* =========================
   CUSTOM SECTIONS
========================= */

.custom-box {
    display: flex;
    min-height: 350px; /* FIXED HEIGHT */
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.custom-img {
    
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* important */
    align-items: center;
}


.custom-img img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.custom-img h5 {
    font-weight: bold;
    margin-top: 10px;
    color: darkgreen;
}

/* WIDTHS */
.w-50 { width: 50%; }
.w-30 { width: 30%; }
.w-70 { width: 70%; }

/* TEXT */
.custom-text {
    padding: 20px;
    position: relative;
}

.custom-text p {
    max-height: 270px; /* FIX HEIGHT */
    overflow: hidden;
    margin: 0;
    text-align: justify;
    padding-bottom: 30px; /* SPACE FOR BUTTON */
}

/* READ MORE BUTTON */
.read-more-btn {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.read-more-btn:hover {
    background: #0056b3;
}

/* =========================
   MODAL
========================= */

.custom-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    padding: 20px;
    max-width: 700px;
    margin: auto;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    float: right;
    font-size: 26px;
    cursor: pointer;
}

/* ======================
   NEWSLETTER
====================== */
.newsletter {
    background: #1e293b;
    color: #fff;
    padding: 50px;
    margin-top: 50px;
}

.newsletter input {
    border-radius: 30px;
    padding: 10px;
}

.newsletter button {
    border-radius: 30px;
}

/* ======================
   FILTER BAR (ARTISTS PAGE)
====================== */
#limit, #search, #category {
    height: 45px;
}

.alpha {
    border-radius: 6px;
    padding: 5px 10px;
}

.alpha.active {
    background: #007bff;
    color: #fff;
}

/* ======================
   PAGINATION
====================== */
.page-btn {
    margin: 3px;
    padding: 6px 12px;
    color: #009624;
    border-radius: 6px;
    border: 1px solid #ddd;
    
}

.page-btn:hover {
    background: #007bff;
    color: #fff;
}

/* ======================
   FOOTER
====================== */
/* FOOTER MAIN */
.footer {
    background: #1e293b;
    color: #fff;
    padding-top: 20Px;
    padding-bottom: 10px;
    margin-top: 20px;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: green;
    
    text-align: left;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
}

/* SOCIAL LINKS */
.social-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #22c55e;
    transform: translateX(5px);
}

/* FORM */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 14px;
}



/* BUTTON */
.btn-footer {
    background: #22c55e;
    border: none;
    padding: 10px;
    width: 100%;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-footer:hover {
    background: #16a34a;
}

/* LINE */
.footer-line {
    border-color: #156be4;
    
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .social-links a {
        display: inline-block;
        margin: 5px;
    }
}

/* ======================
   LOGIN & SIGNUP
====================== */
form.container {
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ======================
   RESPONSIVE FIXES
====================== */
@media(max-width:768px){

    .section-title {
        font-size: 24px;
    }

    .newsletter input {
        width: 100% !important;
        margin-bottom: 10px;
    }

}

/* HEADER WRAPPER */
.header-wrapper {
    position: relative;
    background: #1e293b;
}

/* NAVBAR  */
.custom-navbar {
    position: relative; 
    z-index: 1;
    top: 0;
    width: 100%;
    background: #1e293b;
}


/* SLIDER */
.slider-img {
    height: 350px;
    object-fit: cover;
}
/* ABOUT */
.about-img {
    float: left;
    width: 300px;
    height: auto;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.about-box p {
    text-align: justify;
    line-height: 1.8;
}

/* Clear fix */
.about-box::after {
    content: "";
    display: block;
    clear: both;
}