@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Jacquard+24&display=swap');


/* Main section styles */

.intro header {
    background-image: url('002.jpg'); 
    background-size: cover; 
    background-position: center; 
    padding: 50px;
    text-align: center;
}

.intro header h1 {
    font-size: 60pt;
    margin-bottom: 10px;
    font-family:"Jacquard 24", system-ui;
    text-align: center;
    color: black;
}

.intro header h2, .summary {
    font-size: 10pt; 
    margin-top: 5; 
    text-align: center;
    font-family:"Gruppo", sans-serif;
}

/* Define grid container */

#zen-supporting {
    display: grid;
    padding: 50px;
    grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
    grid-gap: 40px; /* Gap between grid items */
    }
        
    /* Style each grid item */
    #zen-explanation,
    #zen-participation,
    #zen-benefits,
    #zen-requirements {
    background-color: black;
    font-family: "Gruppo", sans-serif;
    color: lightpink;
    padding: 30px; /* Add some padding */
    border-radius: 10px; /* Rounded corners */
    }
    #zen-preamble {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
    
    #zen-preamble h3 {
        grid-column: 1 / -1; /* Span across all columns */
    }
    
    #zen-preamble p {
        margin: 0;
    }
    
    #zen-preamble abbr {
        border-bottom: 1px dotted; /* Example style for abbr elements */
    }
    
 /* Grid layout for the sidebar */
    .wrapper {
        display: grid;
        padding: 50px;
        grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
        grid-gap: 40px; /* Gap between grid items */
        }
    
    .design-selection,
    .design-archives,
    .zen-resources {
        background-color: black;
        font-family: "Gruppo", sans-serif;
        color: lightpink;
        padding: 30px; /* Add some padding */
        border-radius: 10px; /* Rounded corners */
        }
    
    /* Style the navigation links */
    .nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav li {
        margin-bottom: 10px;
    }
    
    .nav a {
        text-decoration: none;
        color: transparent; /* Example link color */
    }
    
    /* Style the indicator */
    .indicator {
        margin-left: 5px;
        font-size: 0.8rem;
    }
    
    /* Additional styles for specific elements */
    .design-selection {
        border: 1px solid #ccc; /* Example border */
    }
    
    .design-archives,
    .zen-resources {
        border: 1px solid #ddd; /* Example border */
    }

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 20px;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 10px; /* Gap between grid items */
  }
  
  .grid-item {
    background-color: #ccc;
    padding: 10px;
    text-align: center;
  }
  