/* style.css - Aesthetic Garden Edition */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #344e41;
    background-color: #f1f3f0;
    background-image: linear-gradient(rgba(241, 243, 240, 0.8), rgba(241, 243, 240, 0.8)), 
                      url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=1920');
    background-size: cover;
    background-attachment: fixed;
}

/* Navigasi */
nav {
    background: rgba(88, 129, 87, 0.95);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

header {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Kotak Kandungan (General Box Style) */
.content-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.aktiviti-section {
    margin-top: 50px;
    padding: 30px;
    border: 2px solid #588157;
    border-radius: 15px;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: flex-start;
}

.aktiviti-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.aktiviti-card {
    width: 120px; /* Saiz gambar dikecilkan */
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #eee;
    transition: 0.3s;
}

.aktiviti-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aktiviti-card:hover {
    transform: scale(1.1);
    border-color: #588157;
}
/* style.css - Aesthetic Garden Edition */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #344e41;
    background-color: #f1f3f0;
    background-image: linear-gradient(rgba(241, 243, 240, 0.8), rgba(241, 243, 240, 0.8)), 
                      url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=1920');
    background-size: cover;
    background-attachment: fixed;
}

/* Navigasi */
nav {
    background: rgba(88, 129, 87, 0.95);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

header {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Kotak Kandungan (General Box Style) */
.content-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.content-box h2 {
    margin-bottom: 15px;
    color: #588157;
}

/* Footer */
footer {
    background: #344e41;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
}

/* Responsif */
@media (max-width: 600px) {
    .container {
        margin: 10px auto;
    }
    header {
        padding: 20px;
    }
}
/* Navigasi */
nav {
    background: rgba(88, 129, 87, 0.95);
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

header {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Kotak Kandungan (General Box Style) */
.content-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #344e41;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 0 20px 20px;
}

/* Responsif */
@media (max-width: 600px) {
    .container { margin: 10px auto; }
}
/* Footer */
footer {
    background: #344e41;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 0 20px 20px;
}

/* Responsif */
@media (max-width: 600px) {
    .aktiviti-grid { gap: 10px; }
    .aktiviti-card { width: 90px; height: 90px; }
}
/* Gaya untuk Gambar Impak di role.html */
.impact-images {
    display: flex;
    justify-content: center; 
    gap: 20px;               
    margin-top: 25px;
    flex-wrap: wrap;        
}

.impact-card {
    width: 300px;            
    height: 200px;           
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #588157; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.impact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       
    transition: transform 0.3s ease;
}

.impact-card img:hover {
    transform: scale(1.05); 
}


@media (max-width: 650px) {
    .impact-card {
        width: 100%;         
        height: auto;
    }
}
