/* Styles for Read More Landing Pages */

/* Header and Footer Styles */
.header_area {
    position: relative;
    z-index: 1000;
}

.footer_area {
    position: relative;
    z-index: 1000;
}

.social-icon-space {
    margin-right: 1cm;
}

/* Common styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container-fullwidth {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.main-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: bold;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Artist Section Styles */
.artist-section {
    text-align: center;
    margin: 40px auto;
    padding: 40px 20px;
    max-width: 1140px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.artist-section h2 {
    color: #333;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.artist-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.artist-box:hover {
    transform: translateY(-5px);
}

.artist-box .cover {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.artist-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.artist-box img:hover {
    transform: scale(1.05);
}

.artist-box h3 {
    margin: 15px 0;
}

.artist-box h3 a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.artist-box h3 a:hover {
    color: #0fbf09;
}

.artist-box p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.play-stop-icon {
    margin-top: 15px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-stop-icon:hover {
    transform: scale(1.1);
}

.play-stop-icon img {
    width: 40px;
    height: 40px;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/our-programs/Albatross Recods/studio.jpg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
    margin: 40px 0;
}

.hero-section div {
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.button-group {
    margin-top: 30px;
}

.button-group a {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-group a:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Intro Section Styles */
.intro-section {
    padding: 60px 0 40px;
    background-color: #fff;
}

.intro-section h1 {
    color: #333;
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.intro-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Header and Donation Styles */
.header_top {
    padding: 3px 0;
    background: #1f2b30;
}

.donate-container {
    display: flex;
    justify-content: flex-end;
    padding: 3px 15px;
    margin: 0;
    height: 32px;
}

.donate-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.amount-group {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

#PayFastAmountLabel {
    margin: 0;
    font-size: 0.85em;
    color: #fff;
}

#PayFastAmount {
    width: 50px;
    height: 24px;
    padding: 1px 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0;
    font-size: 0.85em;
}

.donate-button {
    padding: 3px 10px;
    font-size: 0.85em;
    height: 24px;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.donate-button span {
    font-size: 0.8em;
    margin-left: 4px;
    opacity: 0.8;
}

.donate-button:hover {
    background: #ffed4a;
}

/* Program Feature Cards */
.highlight-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.highlight-card i {
    color: #007bff;
    margin-right: 10px;
}

.highlight-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.join-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.join-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.join-section .btn-primary {
    padding: 12px 30px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section Styles */
.content-section {
    padding: 40px 0;
}

.content-section h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1.1em;
    }

    .button-group a {
        padding: 10px 20px;
        margin: 5px;
        display: block;
        width: 200px;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .artist-box {
        padding: 15px;
    }

    .hero-section {
        min-height: 300px;
        padding: 40px 15px;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }
}
