/* --------------------------------------
 * CORE SETUP
 * -------------------------------------- */
* {
    box-sizing: border-box;
}

body {
    background-color: #263238; 
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 0;
    min-height: 100vh;
    padding: 20px 0;
    place-items: center;
    font-family: 'Open Sans', sans-serif;
}

/* SLIDE CONTAINER */
.slide-container {
    background-color: #F1F8E9; /* Light Green/White Background */
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 720px;
    justify-content: center;
    overflow: hidden;
    padding: 50px 60px;
    position: relative;
    width: 1280px;
    color: #263238;
}

.slide-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(76, 175, 80, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 90% 90%, rgba(2, 136, 209, 0.05) 0%, transparent 20%);
    z-index: 0;
    pointer-events: none;
}

.slide-container > * {
    position: relative;
    z-index: 1;
}

/* --------------------------------------
 * TYPOGRAPHY & TEXT STYLES
 * -------------------------------------- */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #1B5E20; 
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 42px;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 15px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2E7D32;
}

p, li {
    font-size: 20px;
    line-height: 1.6;
    color: #37474F;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 28px;
    color: #455A64;
    font-weight: 400;
    margin-bottom: 30px;
}

ul {
    padding-left: 25px;
    margin: 0;
}

li {
    margin-bottom: 12px;
}

.title-slide-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.title-slide-content hr {
     border: none;
     height: 4px;
     background: linear-gradient(90deg, #4CAF50, #0288D1);
     width: 150px;
     margin: 30px auto;
}

.pill-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.pill {
    background-color: #E8F5E9;
    color: #1B5E20;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #4CAF50;
}

.qa-layout {
    text-align: center;
    background-color: #1B5E20;
    color: white;
    border-radius: 16px;
    padding: 60px;
    width: 100%;
}

.qa-layout h2 {
    color: white;
    font-size: 80px;
    margin-bottom: 20px;
}

.qa-layout p {
    color: #E8F5E9;
    font-size: 24px;
}


/* --------------------------------------
 * LAYOUTS
 * -------------------------------------- */
.content-area {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
}

/* Centering container for slide 11 */
.content-area.centered-content {
    align-items: center;
    text-align: center;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center; 
    width: 100%;
    height: 100%;
}

.two-column > div {
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 400px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.image-wrapper img.grayscale {
    filter: grayscale(100%);
}

.tiled-content {
    display: grid;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.tiled-content.three-col { grid-template-columns: 1fr 1fr 1fr; }
.tiled-content.four-col { grid-template-columns: 1fr 1fr 1fr 1fr; }

.tile {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 5px solid #4CAF50;
    height: 100%;
}

.tile .icon {
    font-size: 40px;
    color: #0288D1;
    margin-bottom: 20px;
}

.two-column.tiled {
    align-items: stretch;
}

.two-column.tiled > div {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #0288D1;
}

.bleed-image-layout {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.bleed-image-layout .content-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bleed-image-layout .image-container {
    height: 100%;
    width: 100%;
}

.bleed-image-layout img.bleed-image-side {
    width: 100%;
    height: 720px; 
    object-fit: cover;
}

/* SLIDE 11 SPECIFIC STYLING */
.breakdown-list li {
    font-size: 22px; /* Base size */
    border-bottom: 1px solid #CFD8DC;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}
/* Increased text size by 25% for tick statements (Slide 11) */
.breakdown-list.large-text li > span {
    font-size: 27.5px; /* 22px * 1.25 = 27.5px */
    font-weight: 600;
}
/* Ensure icons are also visible */
.breakdown-list.large-text li > i {
    font-size: 27.5px;
}

/* --------------------------------------
 * CHARTS & DATA
 * -------------------------------------- */
.chart-container {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bar-chart-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bar-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.bar-label {
    width: 250px;
    font-weight: 600;
    text-align: right;
    padding-right: 20px;
    color: #37474F;
}

.bar-track {
    flex-grow: 1;
    background-color: #E0E0E0;
    border-radius: 10px;
    height: 40px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #1B5E20);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.doughnut-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.doughnut {
    width: 350px;
    height: 350px;
    border-radius: 50%; /* Guaranteed Circular shape */
    background: conic-gradient(
        #1B5E20 0% 40%, 
        #4CAF50 40% 70%, 
        #0288D1 70% 90%, 
        #81D4FA 90% 100%
    );
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.doughnut::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: #F1F8E9; /* Match slide background */
    border-radius: 50%;
}

.legend {
    list-style: none;
    padding: 0;
}

.legend li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 15px;
}


/* --------------------------------------
 * LOGOS (Styling for Logo Images)
 * -------------------------------------- */
.logo-img {
    position: absolute;
    object-fit: contain;
    z-index: 10;
}

.logo-top-left {
    top: 40px;
    left: 50px;
    width: 150px; 
    height: auto;
}

.logo-bottom-right {
    bottom: 40px;
    right: 50px;
    width: 130px;
    height: auto;
}

.logo-bottom-left {
    bottom: 40px;
    left: 50px;
    width: 200px; 
    height: auto;
}
/* Custom styling for Slide 15 Eco Fresh logo position */
.logo-top-left.slide-15-custom {
    top: 35px; /* Raised by 5px (40px base - 5px) */
}