/* ALL PAGES CODING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: "pretendard", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #eaeaea;
    padding: 6rem 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "black-han-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.main {
    position:relative;
    z-index:10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}
a {text-decoration: none; color: inherit;}

/****************************** OVERLAY ********************************/
.hamburgerMenu {
    display: none;
    z-index: 1001;
    padding: 0;
    position: relative;
    margin: 0.75rem 3rem 0 auto;
}
.overlayMenu {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #231816;
  overflow-y: hidden;
  transition: 0.5s;
}
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.overlayMenu a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #eaeaea;
  display: block;
  transition: 0.5s;
}
.overlayMenu a:hover, .overlay a:focus {
  color: #9cc285
}
.overlayMenu .closebtn {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 60px;
  font-family: inherit;
  transition: opacity 0.5s;
}
a.overlayHome {
    color: #eaeaea;
}   
a.overlayHome:hover {
    color: #ca0707;
}
.socialMediaOverlayContainer {
    position: absolute;
    left: auto;
    bottom: 5%;
}
.socialMediaOverlay {
    margin-top: 1.5rem;
    filter: saturate(60%) invert(45%) sepia(60%) grayscale(0) brightness(75%);
    width: 2rem;
    height: 2rem;
    margin: 0 1rem;
}
.socialMediaOverlay:hover {
    filter: saturate(100%) invert(0) sepia(0) grayscale(0) brightness(100%);
    transition: 0.5s;
}


/******************************** HEADER *******************************/
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #231816;
    color: #eaeaea;
    text-align: center;
    height: 6rem;
    width: 100%;
}
.header .row {
    margin:0;
}
.icon {
    display: block;
    background: url("images/AKMU-Logo-Vector.png") top center no-repeat;
    background-size: 75%;
    width: 90%;
    height: 6rem;
    transition: 0.5s;
}
.icon:hover {
    background: url("images/AKMU-Logo-Vector_hover.png") top center no-repeat;
    background-size: 75%;
    width: 90%;
    height: 6rem;
}
.pages{
    display: block;
    margin-top: 1.25rem;
    color: #eaeaea; 
    text-align: center;  
}
.pages:hover {
    color: #9cc285;
    transition: 0.5s;
}


/******************************** FOOTER *******************************/
.footer {
    position: fixed;
    bottom: 0;
    right:0;
    left:0;
    z-index: 10;
    background-color: #231816;
    color: #eaeaea;
    text-align: center;
    padding: 1rem;
    /* margin-top: 2rem; */
    width:auto;
}
.socialMedia {
    filter: saturate(50%) invert(60%) sepia(60%) grayscale(0) brightness(75%);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin: 1rem;
}
.socialMedia:hover {
    filter: saturate(100%) invert(0) sepia(0) grayscale(0) brightness(100%);
    transition: 0.5s;
}
.copyright {
    filter: saturate(50%) invert(60%) sepia(60%) grayscale(0) brightness(75%);
    display: inline-block;
    text-align: center;
    margin: 1.25rem auto;
}
.copyright br {
    display: none;
}


/**************************** HOMEPAGE ITEMS ***************************/
.callToAction {
    color: #eaeaea;
    padding: 2rem;
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 100;
    text-align: center;
}
.callToAction:hover {
    color: #ca0707;
    transition: 0.5s;
}
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index:11;
  top: 0;
  left: 0;
}


/******************************* 404 PAGE ******************************/
.pageNotFound {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: auto;
    text-align: center;
    background-image: url("404/404_image.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}   
.errorMessage{
	margin: 0 10% 0 65%;
	display: block;
	padding: 3rem;
	text-align:center;
}


/****************************** ABOUT PAGE *****************************/
.animation {
	margin:0 auto;
}
.aboutUsImages{
	background: url("images/img-background.png");
	width: 17vw;
	padding: 1rem;
	margin: 0 auto;
	display:block;
	background-size:100%;
	border-radius:10px;	
}
.iconAbout{
	width:17%; margin-top:0.35rem; padding:0; display:inline-flex;
}

/****************************** MUSIC PAGE *****************************/
.musicStreamContainer {
    margin: 0.5rem auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.musicStream {
	filter: saturate(50%) invert(60%) sepia(60%) grayscale(0) brightness(75%);
    width: 4rem;
    height: 4rem;
    margin: 0 1rem 0 1rem;
    display: block;
}
.musicStream:hover{
	filter: saturate(100%) invert(0%) sepia(60%) grayscale(0) brightness(75%);
	transition: 0.5s;
}
/* Container for the album images */
.albumContainer {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto 15rem auto;
}
/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  display: none; /* Hide columns by default */
}
/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Content */
.content {
  margin: 1rem;
  width: 100%;
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}
/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 10px;
  width: 10rem;
  background-color: inherit;
  cursor: pointer;
	color: #231816;
}
/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #231816;
	color: #eaeaea;
}
/* Add a dark background color to the active button */
.btn.active {
  background-color: #ca0707;
	color: #231816;
}


/***************************** EVENTS PAGE *****************************/
.concertBanner{
    display: block;
    width: 100%;
    object-fit: cover;
    align-items: center;
    margin: 0;
    padding: 0;
    top: 0;
}
.tourDates{
    margin: 2rem auto;
    width: 100%;
    display:block;
    margin-bottom: 10%;
}
.tourDates table {
  font-family: inherit;
  border-collapse: collapse;
  width: 100%;
}
.tourDates td, th {
  border: 1px solid #eaeaea;
  text-align: left;
  padding: 8px;
}
.tourDates tr:nth-child(even) {
  background-color: #eaeaea;
}
.tourDates tr td:last-child {
    text-align: center;
}
.tourDates button {
    color: #000 !important;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	background: #9cc285;
}
.tourDates button:hover {
    background-color: #46e2fb;
    transition: 0.5s;
}
.notices {
    font-size: 0.875rem;
} 
.hidden-row {
  display: none; /* Initially hidden */
}
/* Class applied by JS to trigger animation */
.reveal {
  display: table-row;
  animation: fadeInSlide 0.5s ease forwards;
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
#loadMore{
	background-color: #9cc285;
}
*/
/****************************** SHOP PAGE ******************************/
.cart-icon {
    position: relative;
    margin: 2rem 3rem 0 auto;
    cursor: pointer;
    font-size: 22px;
    color: var(--dark);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ca0707;
    color: #eaeaea;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 2rem 0 auto;
}
    .hamburger {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--dark);
    }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #adcb51 0%, #46e2fb 100%);/* 46e2fb  18dad2*/
            color: #eaeaea;
            padding: 3rem 0;
            /* margin-bottom: 60px; */
        }        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }        
        .hero-text {
            flex: 1;
            min-width: 300px;
        }
        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        } 
        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn {
            display: inline-block;
            background-color: #eaeaea;
            color: var(--primary);
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px #7b6b5f;
        }
        .btn-primary {
            background-color: var(--primary);
            color: #eaeaea;
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px #7b6b5f;
        }
        
        /* Products Section */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
        }
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        .product-card {
            background-color: #eaeaea;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px #7b6b5f;
        }
        .product-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        .product-info {
            padding: 20px;
        }
        .product-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .product-description {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        .product-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .product-rating {
            color: #ca0707;
            margin-bottom: 15px;
        }
        .add-to-cart {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: #231816;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .add-to-cart:hover {
            background-color: var(--primary-dark);
        }
        
        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 100%;
            max-width: 400px;
            height: 100%;
            background-color: #eaeaea;
            box-shadow: -5px 0 15px #7b6b5f;
            z-index: 1000;
            overflow-x: hidden;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        .cart-sidebar.active {
            right: 0;
        }
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            border-bottom: 1px solid var(--light);
        }
        .cart-header h3 {
            font-size: 24px;
            color: var(--dark);
        }
        .close-cart {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.3s;
        }
        .close-cart:hover {
            color: var(--danger);
        }
        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        .cart-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--light);
        }
        .cart-item-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-right: 15px;
        }
        .cart-item-details {
            flex: 1;
        }
        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        .cart-item-price {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .quantity-btn {
            background-color: var(--light);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cart-item-quantity {
            font-weight: 600;
        }
        .remove-item {
            color: var(--danger);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            margin-left: auto;
        }
        .cart-footer {
            padding: 25px 20px;
            border-top: 1px solid var(--light);
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cart-total-amount {
            color: var(--primary);
        }
        .checkout-btn {
            width: 100%;
            padding: 16px;
            font-size: 18px;
            color:#231816;
        }
        * .overlayCart {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        .overlayCart.active {
            display: block;
        } 
       
        
        /* Notification */
        .notification {
            position: fixed;
            bottom: 35px;
            right: 20px;
            background-color: var(--success);
            color: #eaeaea;
            padding: 15px 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
            z-index: 1001;
        }
        .notification.active {
            transform: translateY(0);
            opacity: 1;
        }

    
/********************************* CART ************************************/


/*************************** RESPONSIVE CHANGES ************************/
@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;}
  .socialMediaOverlayContainer{
    top: 5%;
  }
}
@media screen and (max-width: 60rem) { /* 960px */
	.body{
		padding-bottom: 9rem;
	}
	.hamburgerMenu {
        display: none;
    }
    .pages {
        display: block;
        margin-top: 0.25rem;
    }
    .icon {
        background-size: 60%;
        margin: 0.5rem;
    }
    .icon:hover {
        background-size: 60%;
        margin: 0.5rem;
    }
    .socialMedia {
       margin: 1rem 0.5rem 0.5rem;
    }
    .copyright {
        margin-top: 1rem;
    }
    .tourDates {
        margin-bottom: 20%;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }     
    .hero-text {
        margin-bottom: 40px;
    }        
    .hero-text h1 {
        font-size: 40px;
    }
    .cart-sidebar {
        right: -600px;
    }
	.iconAbout{
	width:25%; margin-top:0.5rem;
	}
	.notification {
        bottom: 0px;
	}
	.musicStream {
		width: 3rem;
		height: 3rem;
		margin: 0 0.75rem 0 0.75rem;
	}
  } 
@media screen and (max-width: 50rem) { /* 800px */
    .body{
		padding-bottom: 10rem;
	}
	.hamburgerMenu {
        display: block;
    }
    .pages {
        display: none;
    }
    .icon {
        background-size: 35%;
        margin-top: 0.75rem;
        margin-left: -9rem;
    }
    .icon:hover {
        background-size: 35%;
        margin-top: 0.75rem;
        margin-left: -9rem;
    }
    .header .col-3{
        width: 100%;
    }
    .tourDates {
        margin-bottom: 25%;
    }
            .nav {
                display: none;
            }      
            .hamburger {
                display: none;
            }
    .mobile-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #eaeaea;
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
        z-index: 99;
    }        
    .mobile-nav.active {
        display: block;
    }        
    .mobile-nav ul {
        list-style: none;
    }        
    .mobile-nav li {
        margin-bottom: 15px;
    }        
    .mobile-nav a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }        
    .cart-sidebar {
        max-width: 100%;
    }        
    .hero-text h1 {
        font-size: 36px;
    }
    .cart-sidebar {
        right: -800px;
    }
	.aboutUsImages{
		width: 35vw;
	}
	.cart-icon {
		position: relative;
		margin: 1rem 1rem 0 100%;
		top: -15px;
		right: -145px;
		color: #231816;
	}
	.cart-count {
		position: absolute;
		top: -8px;
		right: -12px;
		margin: 0 1rem 0 auto;
	}
}
  @media screen and (max-width: 40rem) { /* 640px */
    .body{
		padding-bottom: 17rem;
	}
	  .hamburgerMenu {
        display: block;
    }
    .pages {
        display: none;
    }
    .icon {
        background-size: 35%;
        margin-top: 0.75rem;
        margin-left: -7.5rem;
    }
    .icon:hover {
        background-size: 35%;
        margin-top: 0.75rem;
        margin-left: -7.5rem;
    }
    .socialMedia {
       display: none;
    }
    .copyright {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    .copyright br {
        display: block;
    }
    .hero {
        padding: 60px 0;
    }
    .hero-text h1 {
        font-size: 32px;
    } 
    .section-title h2 {
        font-size: 28px;
    }            
    .products-grid {
        grid-template-columns: 1fr;
    }
	.iconAbout{
		width:55%; margin-top:0.5rem;
	}	
	.cart-icon {
		position: relative;
		margin: 1rem 1rem 0 100%;
		top: -125px;
		right: 55px;
	}
	.cart-count {
		position: absolute;
		top: -8px;
		right: -12px;
		margin: 0 1rem 0 auto;
	}
}