* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    padding-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.logo, h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: linear-gradient(to right, #4b0f0f, #7a1f1f);
    color: #f5d48e;
    position: fixed;
    width: 100%;
    
}
.navbar a {
    text-decoration: none;
    color: #f5d48e;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ffd700;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.logo span {
    color: #ffd700;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar li {
    cursor: pointer;
    font-size: 16px;
}

/* HERO */
.hero {
    height: 80vh;
    background: url("images/slider/1.jpg") center/cover no-repeat;
    animation: slider 15s infinite;
}

.hero-overlay {
    height: 100%;
    background: rgba(50, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 18px;
    color: #f5d48e;
}
.hero-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: gold;
    color: #4b0f0f;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #ffd700;
    transform: scale(1.05);
}

/* CATEGORIES */
.categories {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 35px;
    background: #3b0b0b;
}

.categories div {
    padding: 14px 35px;
    border: 1px solid #ffd700;
    color: #ffd700;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.categories div:hover {
    background: #ffd700;
    color: #3b0b0b;
}

/* GALLERY */
#gallery {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    background: #fff8e7;
}

.card {
    background: #3b0b0b;
    border: 3px solid #3b0b0b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* FULL IMAGE */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
}

.image-modal img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

.image-modal span {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: gold;
    cursor: pointer;
}

/* -------------------------------------------------------------- */
/*  GALLERY */
/* GALLERY HERO */
.gallery-hero {
    padding: 60px;
    text-align: center;
    background: linear-gradient(to right, #4b0f0f, #7a1f1f);
    color: gold;
}

.gallery-hero h1 {
    font-size: 40px;
}

/* FILTER BUTTONS */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: #3b0b0b;
}

.filter-btn {
    padding: 12px 30px;
    border: 1px solid gold;
    background: transparent;
    color: gold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: gold;
    color: #3b0b0b;
}

/* GALLERY GRID */
.gallery-grid {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    background: #fff8e7;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* -------------------------------------------------------------- */
/* FOOTER */
.footer {
    background: linear-gradient(to right, #4b0f0f, #7a1f1f);
    color: #f5d48e;
    padding-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 60px 40px;
}

.footer-section h2,
.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a {
    text-decoration: none;
    color: #f5d48e;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.social-icons {
    margin-top: 15px;
}

.social-icons i {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #3b0b0b;
    color: gold;
    font-size: 14px;
}
/* ABOUT HERO */
.about-hero {
    height: 80vh;
    background: url("images/slider/1.jpg") center/cover no-repeat;
    animation: slider 15s infinite;
}

@keyframes slider {
    0% { background-image: url("images/slider/1.jpg"); }
    25% { background-image: url("images/slider/2.jpg"); }
    50% { background-image: url("images/slider/3.jpg"); }
    75% { background-image: url("images/slider/4.jpg"); }
    100% { background-image: url("images/slider/1.jpg"); }
}

.about-hero-overlay {
    height: 100%;
    background: rgba(50, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.about-hero-overlay h1 {
    font-size: 42px;
}
.about-hero-overlay p {
    color: #f5d48e;
}
/* -------------------------------------------------------------- */
/* ABOUT SECTION */
.about-section {
    padding: 70px 80px;
    background: #fff8e7;
    text-align: center;
}

.about-section h2 {
    color: #7a1f1f;
    margin-bottom: 20px;
}

.about-section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* MISSION VISION */
.mission-vision {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px;
    background: #3b0b0b;
    color: gold;
}

.mission-vision .box {
    text-align: center;
    max-width: 300px;
}

.mission-vision i {
    font-size: 35px;
    margin-bottom: 15px;
}

/* WHY US */
.why-us {
    padding: 60px;
    background: #fff8e7;
    text-align: center;
}

.why-us h2 {
    color: #7a1f1f;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.why-grid i {
    font-size: 30px;
    color: #7a1f1f;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    padding: 60px;
    text-align: center;
    background: linear-gradient(to right, #4b0f0f, #7a1f1f);
    color: gold;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid gold;
    color: gold;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: gold;
    color: #4b0f0f;
}

/* -------------------------------------------------------------- */
/* ARTIST HERO */
.artist-hero {
    height: 30vh;
    padding: 80px;
    text-align: center;
    background: linear-gradient(to right, #4b0f0f, #7a1f1f);
    color: gold;
}

/* FILTER BAR */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px;
    background: #3b0b0b;
}

.filter-bar select {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid gold;
    background: transparent;
    color: gold;
}

/* ARTIST LIST */
.artist-list {
    padding: 60px;
    background: #fff8e7;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.artist-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.artist-info {
    flex: 1;
    margin-left: 20px;
}

.artist-info h3 {
    color: #7a1f1f;
}

.artist-info i {
    color: gold;
}

.book-btn {
    padding: 10px 25px;
    background: #7a1f1f;
    color: gold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    background: gold;
    color: #7a1f1f;
}
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        padding: 15px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .hero-overlay h1 {
        font-size: 30px;
    }

    .categories {
        flex-wrap: wrap;
    }

    .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .artist-card {
        flex-direction: column;
        text-align: center;
    }

    .artist-card img {
        margin-bottom: 15px;
    }
}