/* =====================================================
   BRATISLAVA STREET ART FESTIVAL - Custom Styles
   ===================================================== */

/* ===== TYPOGRAPHY ===== */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.lead, p.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* ===== SECTION STYLING ===== */
section {
    padding: 100px 0;
}

section:nth-child(odd) {
    background-color: #f8f9fa;
}

section:nth-child(even) {
    background-color: #ffffff;
}

section .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

section .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

section .title {
    text-align: center;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
    color: #fff;
    padding: 100px 0;
}

#about h1, #about h2, #about h3 {
    color: #fff;
}

#about h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#about h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.8rem;
    margin-top: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

#about p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

#about .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
}

#about ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about ul li {
    padding: 0 0 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

#about ul li:last-child {
    border-bottom: none;
}

#about ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 1.2rem;
}

#about .btn {
    background: #fff !important;
    color: #e74c3c !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

#about .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY SECTION ===== */
#streetartgallery {
    background: #fff;
    padding: 100px 0;
}

#streetartgallery h2 {
    color: #2c3e50;
    margin-top: 2rem;
}

#streetartgallery h3 {
    color: #9b59b6;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

#streetartgallery .gallery_name a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

#streetartgallery .gallery_name a:hover {
    color: #9b59b6;
}

#streetartgallery .btn {
    background: linear-gradient(90deg, #9b59b6, #8e44ad) !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

#streetartgallery .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

/* ===== ARTISTS SECTION ===== */
#artists {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 100px 0;
}

#artists h2 {
    color: #2c3e50;
}

#artists ul {
    list-style: none;
    padding: 0;
}

#artists ul li {
    padding: 18px 25px;
    padding-left: 55px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#artists ul li:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

#artists ul li::before {
    content: '\f1fc';
    font-family: 'FontAwesome';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-size: 1.2rem;
}

#artists .btn {
    background: linear-gradient(90deg, #e74c3c, #f39c12) !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

#artists .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

/* ===== PRODUCTION SECTION ===== */
#production {
    background: #fff;
    padding: 100px 0;
}

#production h2 {
    color: #2c3e50;
    margin-top: 2rem;
}

#production ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

#production ul li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#production ul li:hover {
    background: #fef5e7;
    transform: translateX(5px);
}

#production ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #f39c12;
    font-size: 1rem;
}

#production .btn {
    background: linear-gradient(90deg, #f39c12, #e67e22) !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

#production .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* ===== PARTNERS SECTION ===== */
#partners {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #1a5276 100%);
    color: #fff;
    padding: 100px 0;
}

#partners .title {
    color: #fff;
}

#partners .title::after {
    background: linear-gradient(90deg, #f39c12, #e74c3c);
}

#partners h2, #partners h3 {
    color: #fff;
}

#partners p {
    color: rgba(255, 255, 255, 0.85);
}

#partners ul {
    list-style: none;
    padding: 0;
}

#partners ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

#partners ul li::before {
    content: '\f054';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 0.8rem;
}

#partners .btn {
    background: #fff !important;
    color: #3498db !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

#partners .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== NEWS SECTION ===== */
#news {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 100px 0;
}

#news .title {
    color: #fff;
}

#news .title::after {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.news-date {
    color: #f39c12;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #e74c3c;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-readmore {
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.news-readmore:hover {
    color: #e74c3c;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item {
        padding: 20px;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }
}

/* ===== PHOTO GALLERY SECTION ===== */
#photogallery {
    padding: 50px 0;
    background: #f8f9fa;
}

#photogallery .gallery_name a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

#photogallery .gallery_name a:hover {
    color: #e74c3c;
}

/* ===== GLOBAL BUTTON STYLES ===== */
.btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== BOOTSTRAP ROW FIX FOR CONTENT ===== */
section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

section .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

section .col-md-5,
section .col-md-6,
section .col-md-7,
section .col-md-12 {
    float: left;
}

@media (min-width: 992px) {
    section .col-md-5 { width: 41.66667%; }
    section .col-md-6 { width: 50%; }
    section .col-md-7 { width: 58.33333%; }
    section .col-md-12 { width: 100%; }
    .navbar-white { height:75px;
    }
    .navbar-brand>img {
    padding: 2px 0px 0px 1px;
}
}

@media (max-width: 991px) {
    section .col-md-5,
    section .col-md-6,
    section .col-md-7 {
        width: 100%;
        float: none;
    }
}

/* Clearfix for rows */
section .row::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== BANNER IMAGES ===== */
.bg-amen {
    margin: 0;
    padding: 0;
}

.bg-amen img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }

    #about h1 {
        font-size: 2.4rem;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .lead, p.lead {
        font-size: 1rem;
    }

    #about h1 {
        font-size: 1.4rem;
    }

    #about h2 {
        font-size: 1.2rem;
    }

    #about p,
    #about .lead {
        font-size: 0.95rem;
    }

    #about ul li {
        font-size: 0.9rem;
        padding-left: 28px;
    }

    #about {
        padding: 40px 0;
    }

    section {
        padding: 35px 0;
    }

    section .title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    #production ul {
        grid-template-columns: 1fr;
    }

    #streetartgallery h2,
    #artists h2,
    #production h2 {
        font-size: 1.2rem;
    }

    #streetartgallery h3 {
        font-size: 1rem;
    }

    #artists ul li,
    #production ul li {
        font-size: 0.9rem;
        padding: 12px 15px 12px 40px;
    }

    /* Mobile buttons */
    .btn,
    #about .btn,
    #artists .btn,
    #production .btn,
    #streetartgallery .btn,
    #partners .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    /* Footer mobile */
    footer#contact h3 {
        font-size: 1.1rem;
    }

    footer#contact p,
    footer#contact .col-md-4 {
        font-size: 0.85rem;
    }

    footer#contact .whbg {
        padding: 20px 15px;
    }
}

/* ===== NAVBAR STYLING ===== */
@media (min-width: 992px) {
    .navbar-brand > img {
        max-height: 75px;
    }
}

.navbar-white {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-white .navbar-nav > li > a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 18px;
    transition: color 0.3s ease;
}

.navbar-white .navbar-nav > li > a:hover {
    color: #e74c3c;
}

/* Language switch styling */
.navbar-white .navbar-nav > li > a.lang-switch {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px 5px;
    font-weight: 600;
}

.navbar-white .navbar-nav > li > a.lang-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

/* Mobile navbar overrides */
@media only screen and (max-width: 992px) {
    .navbar-white .navbar-nav > li > a {
        padding: 10px 0 !important;
        text-align: center;
        line-height: 1.4 !important;
    }
    .navbar-white .navbar-nav > li > a.lang-switch {
        padding: 8px 15px !important;
        margin: 5px 15px;
    }
    .navbar-collapse {
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* ===== STRONG TEXT STYLING ===== */
strong {
    font-weight: 600;
    color: #2c3e50;
}

#about strong {
    color: #fff;
}

#partners strong {
    color: #fff;
}

/* ===== LINKS ===== */
a {
    color: #e74c3c;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
    text-decoration: none;
}

/* ===== FOOTER STYLING ===== */
footer#contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 0 20px;
}

footer#contact h3 {
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

footer#contact p,
footer#contact .col-md-4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer#contact b {
    color: #fff;
}

/* Footer links - clean style without underline */
footer#contact a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

footer#contact a:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    text-decoration: none;
}

/* Phone and email icons */
footer#contact .fa {
    color: #e74c3c;
    margin-right: 8px;
    border-radius: 5px;
    text-align: center;
}

footer#contact .whbg {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
}

footer#contact .col-md-4 {
    padding: 15px 20px;
}

footer#contact .mapka {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer#contact .mapka a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    border-bottom: none;
}

footer#contact .mapka a:hover {
    color: #fff;
}

/* Footer form inputs - fix spacing and size */
footer#contact .form-group {
    margin-bottom: 15px;
}

footer#contact .form-control,
footer#contact .modern-input {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    color: #333;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

footer#contact textarea.form-control,
footer#contact textarea.modern-input {
    min-height: 60px;
    resize: vertical;
}

footer#contact .form-control:focus,
footer#contact .modern-input:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    outline: none;
}

footer#contact .btn-kontakt,
footer#contact .contact-submit {
    background: linear-gradient(90deg, #e74c3c, #f39c12) !important;
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

footer#contact .btn-kontakt:hover,
footer#contact .contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

/* Fix form container padding */
footer#contact .px-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===== CAROUSEL CAPTION STYLING ===== */
.carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    padding: 20px 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-caption-content h1,
.carousel-caption-content h2,
.carousel-caption-content h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-caption-content h1 {
    font-size: 2.8rem;
}

.carousel-caption-content h2 {
    font-size: 2rem;
}

.carousel-caption-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.carousel-caption-content .btn {
    background: linear-gradient(90deg, #e74c3c, #f39c12) !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.carousel-caption-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

/* Responsive carousel caption */
@media (max-width: 991px) {
    .carousel-caption {
        bottom: 15%;
    }

    .carousel-caption-content {
        padding: 20px 30px;
        max-width: 90%;
    }

    .carousel-caption-content h1 {
        font-size: 2rem;
    }

    .carousel-caption-content h2 {
        font-size: 1.5rem;
    }

    .carousel-caption-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        bottom: 10%;
        padding: 10px 0;
    }

    .carousel-caption-content {
        padding: 15px 20px;
        max-width: 95%;
    }

    .carousel-caption-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .carousel-caption-content h2 {
        font-size: 1.2rem;
    }

    .carousel-caption-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .carousel-caption-content .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    .carousel {
    height: 48% !important;
}
section {
    padding: 40px 0 !important;
}

}

/* ===== GALLERY HEADER (headergal) STYLING ===== */
.galhead {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.galhead h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
}

.galhead p {
    color: rgba(255, 255, 255, 0.85);
    margin: 10px 0 0;
}

.galhead a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
}

.galhead a:hover {
    color: #e74c3c;
}

/* ===== ARTIST CARDS ===== */
.artist-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.artist-card h3 {
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.artist-card .country {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

.artist-card p {
    color: #555;
    margin-bottom: 0;
}

/* ===== MURAL PROJECT CARDS ===== */
.mural-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mural-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mural-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mural-card .mural-info {
    padding: 20px;
}

.mural-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.mural-card .location {
    color: #e74c3c;
    font-size: 0.9rem;
}

.mural-card .artist-name {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== PARTNER LOGOS ===== */
.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 150px;
    max-height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* ===== NEWS DETAIL PAGE ===== */
.news-detail-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.news-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-detail-header .back-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.news-detail-header .back-link:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.news-detail-header .back-link i {
    margin-right: 8px;
}

.news-detail-date {
    color: #f39c12;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-detail-prologue {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-detail-content {
    margin-bottom: 40px;
}

.news-detail-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.news-detail-text h2,
.news-detail-text h3,
.news-detail-text h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-detail-text h3 {
    font-size: 1.5rem;
    color: #f39c12;
}

.news-detail-text h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.news-detail-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.news-detail-text ul,
.news-detail-text ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.news-detail-text li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.news-detail-text a {
    color: #f39c12;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.news-detail-text a:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

.news-detail-text strong {
    color: #fff;
}

/* News Gallery */
.news-gallery {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.news-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-gallery-thumbs {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-gallery-thumbs h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-grid a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* News Detail Footer */
.news-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.news-detail-footer .btn {
    background: linear-gradient(90deg, #e74c3c, #f39c12) !important;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-detail-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.news-detail-footer .btn i {
    margin-right: 10px;
}

/* News Image in list */
.news-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

/* Responsive News Detail */
@media (max-width: 991px) {
    .news-detail-section {
        padding: 100px 0 60px;
    }

    .news-detail-title {
        font-size: 2rem;
    }

    .news-detail-prologue {
        font-size: 1.1rem;
    }

    .news-detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .news-detail-section {
        padding: 80px 0 40px;
    }

    .news-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-detail-title {
        font-size: 1.5rem;
    }

    .news-detail-prologue {
        font-size: 1rem;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .news-detail-text {
        font-size: 0.95rem;
    }

    .news-detail-text h3 {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-grid img {
        height: 100px;
    }

    .news-detail-footer .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
