/* Full width breakout */
.full-width-breakout {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.full-width-breakout .content-within {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/*viewport*/
.vh50 {
	min-height: 50vh;
}

.bigred {    
	font-size: 4rem;
    color: #B01E24!important;
    font-weight: bolder;
}

/* Schedule Section Styling */
        
#schedule {
	background: #f8f9fa
}

.schedule-card {
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
		}

.schedule-card .icon {
            margin-bottom: 20px;
        }

/* Donations Section Styling */
        #donations {
            background-color: #efefef;
        }

        .donation-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .donation-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #B01E24;
        }
        
        .donation-card .text-muted {
            margin-bottom: 1.5rem;
        }
        
        .donation-card .btn {
            margin-top: auto; 
        }