/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f5f0;   
}

.h1-shaddow {
  text-shadow: 2px 2px #d26418;
}

.h4-shaddow {
  text-shadow: 1px 1px #eee0d7;
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s;
}

nav a.active, nav a:hover {
    background: rgba(106, 76, 147, 0.1);
    border-radius: 4px;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
                url('../images/hero-fabric.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.strikethrough {
    text-decoration: line-through;
    color: #d64045;
}

.cta-button {
    background: #588157;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
}

/* Sections */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.why-pom-fashion h3, .governance h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #b07145;
    font-size: 2rem;
}

.circular ul {
    margin-top: 0em; /* Adjust as needed */
    margin-bottom: 0em; /* Adjust as needed */
    color: #312f33;
    font-size: 1rem;
}

.impact-certificates h3, .governance h3 {
    text-align: center;
    margin-bottom: 0rem;
    color: #312f33;
    font-size: 2rem;
}

.impact-calculator h3, .governance h3 {
    text-align: center;
    margin-bottom: 0rem;
    color: #312f33;
    font-size: 2rem;
}

.community h3, .governance h3 {
    text-align: center;
    margin-bottom: 0rem;
    color: #312f33;
    font-size: 2rem;
}


/* Tables */
.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #dededf;
    background-color: #eceff1;
    color: #000000;
    padding: 5px;
}

.table_component td {
    border: 1px solid #dededf;
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
}

/* Calculator */
.calculator {
    background: white;
    padding: 20px 10px;
    text-align: center;
}
.calc-container {
    max-width: 500px;
    margin: 0 auto;
}
input[type="range"] {
    width: 100%;
    margin: 20px 0;
}
.results {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}
.result-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    width: 45%;
    min-width: 150px;
    margin: 10px;
}
.result-card h3 {
    font-size: 2rem;
    color: #2986cc;
    margin-bottom: 5px;
}
.source {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #666;
}

/* Community */
.community {
    background: url('../images/community-hands.jpg') center/cover;
    padding: 20px 10px;
    color: white;
    text-align: center;
}
.community li {
    margin: 15px 0;
    list-style: none;
    font-size: 1.1rem;
}
.cta-button-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    background: #333;
    color: white;
}


/* Responsive */
@media (max-width: 768px) {
    header table {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
