@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-padding {
    padding: 100px 0 !important;
}

.container {
    max-width: 1920px;
    padding: 0 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e0f9fa;
}


.navbar {
    background-color: #083A3A;
    padding: 10px 0;
}

.navbar-brand img {
    width: 200px;
}

.footer-logo img {
    width: 250px;
    margin-bottom: 20px;
}

.nav-link {
    font-size: 20px;
    margin-right: 20px;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #5EEAD4 !important;
}

.nav-link.active {
    border-bottom: 4px solid #ffffff;
}

/* hero section */
.hero-section {
    min-height: calc(100vh - 0px);
    background: url('../img/banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.226);
    display: flex;
    align-items: center;
    color: white;
}

.hero-section h1 {
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0F766E;
}

.fs-lg-1 {
    font-size: 50px !important;
}

.bttn {
    margin-top: 50px;
    padding: 20px;
    font-size: 20px;
}


/* artists  */

.section-title {
    color: #134E4A;
    font-weight: 600;
    margin-bottom: 50px;
    font-size: 50px;
    text-transform: capitalize;
    letter-spacing: 4px;
}

.card-body span {
    font-size: 30px;
    font-weight: 600;
}

.card img {
    height: 320px;
    object-fit: cover;
}

.btn-theme {
    background-color: #0F766E;
    color: white;
    border: none;
}

.btn-theme:hover {
    background-color: #332516;
}


/* slider  */
.slider span {
    background-color: rgba(0, 0, 0, 0.986);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 20px;
}

.product-card img {
    height: 330px;
    object-fit: cover;
}


/* Dropdown animation */
.dropdown-menu-animate {
    animation: fadeSlide 0.4s ease forwards;
    transform-origin: top;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* 3D accordion container */
.accordion-3d {
    perspective: 1200px;
}

.accordion-3d .accordion-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.accordion-3d .accordion-item:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.accordion-3d .accordion-button {
    background: linear-gradient(135deg, #044943, #3b9690);
    color: #ffffff;
    font-weight: 600;
    border-radius: 14px;
}

.accordion-3d .accordion-button:not(.collapsed) {
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.accordion-3d .accordion-body {
    background: #f8f9fa;
    border-radius: 0 0 14px 14px;
    font-size: 0.95rem;
}

.accordion-flush .accordion-item {
    border: none;
}



.footer-theme {
    background-color: #0F766E;
    color: white;
    padding: 15px 0;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
}

.footer-text {
    color: #e0e0e0;
    max-width: 320px;
    font-size: 20px;
    line-height: 2;
}

.footer-title {
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
}

.footer-links li {
    font-size: 20px;
    margin-top: 20px;
    letter-spacing: 1px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #5EEAD4;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.664);
}

.footer-copy a {
    font-size: 0.9rem;
    color: #f1f1f1;
    text-decoration: none;
    font-size: 15px;
}

.footer-copy strong {
    font-size: 15px;
}

.footer-contact p {
    font-size: 20px;
    margin-top: 20px;
}