/* style.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #ae2f8f;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

/* Navigation */
#mainnav ul {
    display: flex;
}

#mainnav ul li a {
    color: white;
    padding: 10px 15px;
    font-weight: 500;
    display: block;
}

#mainnav ul li a:hover {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* Slider Styles */
.header-slider {
    height: 100vh;
    position: relative;
    margin-top: 80px;
}

.slides-container {
    height: 100%;
    position: relative;
}

.slide-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-item.active {
    opacity: 1;
}

.slide-inner {
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
    max-width: 800px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.maintitle {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.roll-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ae2f8f;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid #ae2f8f;
}

.roll-button:hover {
    background-color: transparent;
    color: white;
}

/* Content Styles */
.page-wrap {
    padding: 60px 0;
}

.title-post {
    color: #ae2f8f;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ol, .entry-content ul {
    margin-bottom: 30px;
    padding-left: 40px;
}

.entry-content li {
    margin-bottom: 10px;
}

/* Services Section */
.panel-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.panel-grid-cell {
    padding: 0 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

.widget-title {
    text-align: center;
    color: #ae2f8f;
    font-size: 32px;
    margin-bottom: 50px;
}

.roll-icon-box {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.roll-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.roll-icon-box .icon i {
    font-size: 40px;
    color: #ae2f8f;
    margin-bottom: 20px;
}

.roll-icon-box .content h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.site-footer a {
    color: #ae2f8f;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-info {
    padding: 20px 0;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .panel-grid-cell {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    #mainnav ul li a {
        padding: 10px 20px;
    }
}

@media (min-width: 992px) {
    .panel-grid-cell {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}
/* Charity Donation Page Styles */
.charity-hero {
    position: relative;
    margin-bottom: 40px;
}

.charity-logo {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.charity-logo img {
    height: 60px;
    width: auto;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    text-align: center;
}

.stat {
    padding: 15px;
}

.stat strong {
    display: block;
    font-size: 28px;
    color: #ae2f8f;
}

.donate-options {
    margin-top: 50px;
}

.options-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.option-card {
    flex: 1;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.option-card i {
    color: #ae2f8f;
    margin-bottom: 15px;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background: #f0f7ff;
    border-left: 4px solid #ae2f8f;
}

blockquote {
    font-style: italic;
    margin: 0;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-style: normal;
}

/* Action Against Cancer Specific */
.donation-impact {
    margin: 40px 0;
}

.impact-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.impact-item {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    margin: 0 10px;
    border-radius: 8px;
}

.impact-item .amount {
    font-size: 24px;
    font-weight: bold;
    color: #ae2f8f;
    margin-bottom: 10px;
}

.roll-button.large-button {
    padding: 15px 40px;
    font-size: 18px;
}

.roll-button.large-button i {
    margin-right: 10px;
}
/* Action for Kids Specific */
.impact-cards {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.impact-card {
    flex: 1;
    padding: 25px;
    margin: 0 10px;
    background: #f0f9ff;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #ae2f8f;
}

.impact-card .amount {
    font-size: 28px;
    font-weight: bold;
    color: #ae2f8f;
    margin-bottom: 10px;
}

.donate-cta {
    text-align: center;
    margin: 50px 0 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.roll-button.secondary {
    background: white;
    color: #ae2f8f;
    border: 2px solid #ae2f8f;
}

.roll-button.secondary:hover {
    background: #ae2f8f;
    color: white;
}

/* Poppy Appeal Specific Styles */
.poppy-hero {
    position: relative;
    margin-bottom: 40px;
}

.poppy-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.poppy-badge img {
    width: 60px;
    height: 60px;
}

.campaign-highlights {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    text-align: center;
}

.highlight {
    flex: 1;
    padding: 20px;
}

.highlight i {
    color: #ae2f8f;
    margin-bottom: 15px;
}

.donation-steps {
    margin: 40px 0;
    padding-left: 0;
}

.donation-steps li {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.donation-steps li:before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    background: #ae2f8f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.donation-options {
    text-align: center;
    margin: 50px 0;
}

.options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.roll-button.poppy {
    background: #d22b2b;
    border-color: #d22b2b;
}

.roll-button.poppy:hover {
    background: #a82222;
}

/* 10 Years Celebration Styles */
.anniversary-hero {
    position: relative;
    margin-bottom: 60px;
}

.anniversary-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #ae2f8f;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.anniversary-badge span {
    font-size: 42px;
    line-height: 1;
}

.anniversary-badge small {
    font-size: 16px;
    margin-top: -5px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ae2f8f;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid #ae2f8f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    text-align: center;
}

.stat .number {
    font-size: 42px;
    font-weight: bold;
    color: #ae2f8f;
    margin-bottom: 5px;
}

.founder-quote {
    margin: 60px 0;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #ae2f8f;
    font-style: italic;
}

.founder-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    text-align: right;
}
/* Data Protection Page Styles */
.improvement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.improvement-card {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-top: 4px solid #ae2f8f;
}

.improvement-card .icon {
    font-size: 32px;
    color: #ae2f8f;
    margin-bottom: 15px;
}

.protection-features {
    margin: 40px 0;
}

.feature {
    margin: 15px 0;
    padding-left: 35px;
    position: relative;
}

.feature input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    accent-color: #ae2f8f;
}

.case-study {
    margin: 50px 0;
    padding: 30px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #ae2f8f;
}

/* Launch Charities Page Styles */
.charity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.charity-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.charity-image {
    height: 180px;
    overflow: hidden;
}

.charity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-info {
    padding: 20px;
}

.charity-info h3 {
    margin-bottom: 10px;
    color: #ae2f8f;
}

.charity-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.roll-button.small {
    padding: 8px 15px;
    font-size: 14px;
}

.charity-cta {
    text-align: center;
    margin: 60px 0 30px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Launch Charities Page Styles */
.charity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.charity-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.charity-image {
    height: 180px;
    overflow: hidden;
}

.charity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-info {
    padding: 20px;
}

.charity-info h3 {
    margin-bottom: 10px;
    color: #ae2f8f;
}

.charity-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.roll-button.small {
    padding: 8px 15px;
    font-size: 14px;
}

.charity-cta {
    text-align: center;
    margin: 60px 0 30px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Picture-Free Timeline Styles */
.phase-content {
    margin-left: 70px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.team-list {
    margin-top: 30px;
}

.team-member {
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-left: 4px solid #ae2f8f;
}

.team-member h3 {
    color: #ae2f8f;
}

.team-member h3 i {
    margin-right: 10px;
}

/* Blog Post Specific Styles */
.post-meta {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.tags {
    margin: 20px 0;
}

.tags a {
    display: inline-block;
    padding: 3px 10px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 14px;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.solution {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.solution h3 {
    color: #ae2f8f;
    margin-bottom: 10px;
}

.solution h3 i {
    margin-right: 8px;
}

.outcomes {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}

.outcome {
    text-align: center;
    margin: 10px;
    min-width: 120px;
}

.metric {
    font-size: 28px;
    font-weight: bold;
    color: #ae2f8f;
}

blockquote {
    border-left: 4px solid #ae2f8f;
    padding: 20px;
    background: #f9f9f9;
    margin: 30px 0;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
}

.cta-box {
    text-align: center;
    margin: 50px 0 30px;
    padding: 30px;
    background: #f0f7ff;
    border-radius: 8px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}