
#impactStatement {
	float:right;
margin-right:420px; 
}
#plainContainer { 
	margin-top: 6px; 
}
.tag-cloud {
    max-width: 91%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap; /* Ensures proper line breaking */
    gap: 5px; /* Adds spacing instead of using margins */
    align-items: flex-start; /* Ensures natural height variation */
}

.tag-cloud span {
    display: flex; /* Flex fixes alignment issues */
    align-items: center;
    justify-content: center;
    background-color: #518BA1;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
    white-space: nowrap; /* Prevents text from wrapping inside */
    line-height: 1; /* Keeps padding from affecting height inconsistencies */
}


#getToKnowContainer { 
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
/*    height: 100vh; */ 
}
.boosted {
box-shadow: 0px 0px 16px rgba(231, 125, 66, 0.9);
  transition: box-shadow 0.3s ease-in-out;
}
.artist-section {
    text-align: center;
    max-width: 1200px;
    width: 100%;
	display: flex;
}

.artist-panel {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
margin:2px;
}

.artist-panel:hover {
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
}



.artist-panel p {
    color: #555;
    line-height: 1.6;
}


/* Mobile layout - stacked vertically */
@media (max-width: 768px) {
    .artist-section {
        flex-direction: column;
        align-items: center; /* Optional: center the panels */
    }

    .artist-panel {
	max-width: 100% ; 
        width: 100%; /* Make the panels take up the full width */
        margin-bottom: 7px; /* Optional: add spacing between stacked panels */
    }
}



/* General styling for callback areas */
#elevateContainer {
    background: linear-gradient(135deg, #518BA1, #74A8C1);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 20px auto;
}

/* Style for the elevate button */
.subscribeButton {
    background: #E77D42;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.subscribeButton:hover {
    background: #FFA000;
    transform: scale(1.05);
}

/* Contact section improvements */
h4 {
    color: #518BA1;
    margin-top: 20px;
}

a {
    color: #E77D42;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    color: #FFA000;
    text-decoration: underline;
}

/* Artist panels: make them pop more */
/*.artist-panel {
    background: #F8F8F8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}*/

/* Tag cloud: add some hover effects */
.tag-cloud span {
    transition: transform 0.2s, box-shadow 0.2s;
}

.tag-cloud span:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

    .tag-cloud .hidden-tag {
        display: none ;
    }
