
/* =====================================
   TABLET VIEW
   601px - 768px
===================================== */

@media (min-width:601px) and (max-width:768px){

    .header{
        padding:12px 20px;
    }


    /* Search visible in tablet */
    .search-container{
        display:block;
        max-width:220px;
        margin:0 10px;
    }


    /* Hide About Us and Contact Us */
    .nav-links .nav-link{
        display:none;
    }


    .nav-links{
        gap:12px;
    }


    .user-profile{
        display:flex;
        font-size:14px;
    }


    .hero-title{
        font-size:34px;
    }


    .hero-title span{
        font-size:58px;
    }


    .hero-subtitle{
        font-size:16px;
    }


    .carousel-card.side{
        display:none;
    }


    .carousel-card.center{
        width:100%;
        max-width:650px;
        height:300px;
    }


    .shows-grid{
        grid-template-columns:repeat(2,1fr);
    }


    .footer-row{
        flex-direction:column;
        gap:35px;
    }


    .footer-top{
        flex-direction:column;
        align-items:flex-start;
    }


    .footer-line{
        width:100%;
        margin-right:0;
        margin-bottom:20px;
    }


    .footer-bottom{
        flex-wrap:wrap;
        justify-content:center;
    }

}




/* =====================================
   MOBILE VIEW
   451px - 600px
===================================== */

@media (max-width:600px){

    .container{
        padding:0 15px;
    }


    .header{
        padding:10px 15px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:nowrap;
    }


    /* Hide Search */
    .search-container{
        display:none;
    }


    /* Hide About Us + Contact Us */
    .nav-links .nav-link{
        display:none;
    }


    .nav-links{
        display:flex;
        align-items:center;
        gap:10px;
    }


    /* Keep Profile */
    .user-profile{
        display:flex;
        font-size:13px;
    }


    .hero-section{
        padding:30px 15px;
    }


    .hero-title{
        font-size:22px;
    }


    .hero-title span{
        font-size:42px;
    }


    .hero-subtitle{
        font-size:11px;
    }


    .carousel-card.center{
        width:100%;
        height:180px;
    }


    .section-title{
        font-size:18px;
    }


    .shows-grid{
        grid-template-columns:auto;
        gap:12px;
    }


    .show-img-box{
        height:160px;
    }


    .show-type{
        font-size:9px;
    }


    .show-name{
        font-size:12px;
    }


    .show-venue{
        font-size:9px;
    }


    .show-price{
        font-size:11px;
    }


    .categories-flex{
        justify-content:space-between;
    }


    .category-circle{
        width:65px;
        height:65px;
    }


    .category-label{
        font-size:10px;
    }


    .organizer-banner{
        flex-direction:column;
        padding:20px;
        gap:15px;
    }


    .organizer-text h3{
        font-size:16px;
    }


    .banner-graphic img{
        width:100%;
        max-width:100%;
    }


    .footer-bottom{
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

}




/* =====================================
   SMALL MOBILE
   BELOW 450px
===================================== */

@media(max-width:450px){

    .header{
        padding:10px 12px;
    }


    .brand-logo{
        transform:scale(.9);
        transform-origin:left center;
    }


    .nav-links{
        gap:6px;
    }


    .user-profile{
        font-size:12px;
    }


    .search-container{
        display:none;
    }


    .nav-links .nav-link{
        display:none;
    }

    /* Hide About Us and Contact Us on mobile + tablet */
@media (max-width: 1024px){

    .nav-links .nav-link{
        display:none;
    }

}

}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.show-card {
    width: 100%;
    min-width: 0;
}

.show-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
}

.show-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-info {
    padding-top: 12px;
}

.show-type {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.show-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.show-venue {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.show-price {
    font-size: 16px;
    font-weight: 600;
}
/* Category Heading + View All */
.category-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

/* Category Heading */
.category-heading-row .section-title {
    margin: 0;
}

/* View All Link */
.category-view-all {
    margin-left: auto;
    text-decoration: none;
    color: #e66a00;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.category-view-all:hover {
    color: #c55400;
    text-decoration: none;
}

/* Category Section */
.home-category-section {
    width: 100%;
    margin-bottom: 50px;
}
/* ==========================================
   SECTION HEADING + VIEW ALL
========================================== */

.section-heading-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 30px;
}


/* Remove default margin from heading */

.section-heading-row .section-title {
    margin: 0;
    padding: 0;
}


/* ==========================================
   VIEW ALL LINK
========================================== */

.section-heading-row .view-all {
    margin: 0;
    padding: 0;
    display: block;
}


.section-heading-row .view-all a {
    display: inline-block;
    color: #e85d04;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}


.section-heading-row .view-all a:hover {
    color: #c94d00;
    text-decoration: none;
}


/* ==========================================
   FEATURED SHOW GRID
========================================== */

#featuredShowsGrid {
    width: 100%;
}


/* ==========================================
   HOME CATEGORY SHOWS
========================================== */

#homeCategoryShows {
    width: 100%;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .section-heading-row {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .section-heading-row .section-title {
        font-size: 22px;
    }

    .section-heading-row .view-all a {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .section-heading-row .section-title {
        font-size: 20px;
    }

    .section-heading-row .view-all a {
        font-size: 12px;
    }

}

.event-card-clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .footer-row {
    flex-direction: row;
    gap: 50px !important;
}
/* .footer-line{
    flex: 0 0 4px !important;
} */
 .footer-top{
    align-items: start !important;
 }
}
@media (max-width: 767px) {
    .shows-grid {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    gap: 10px;
}
.event-card-clickable {
    width: 250px;
    flex: 0 0 250px;
}
.footer-row {
    flex-direction: column;
    gap: 10px !important;
}
.footer{
    padding-bottom: 25px !important;
}
.footer-top{
    align-items: start !important;
}
.footer-line {
    width: 72%;
    flex: 0 0 3px !important;
}

}