        /*Styling contact page*/
        @font-face {
            font-family: montLight;
            src: url('../fonts/montLight.otf') format('opentype');
            font-weight: normal;
        }

        @font-face {
            font-family: montHeavy;
            src: url('../fonts/montHeavy.otf') format('opentype');
            font-weight: normal;
        }

        @font-face {
            font-family: montRegular;
            src: url('../fonts/montRegular.otf') format('opentype');
            font-weight: normal;
        }

        @font-face {
            font-family: montBold;
            src: url('../fonts/montBold.otf') format('opentype');
            font-weight: normal;
        }

        @font-face {
            font-family: montSemiBold;
            src: url('../fonts/montSemibold.otf') format('opentype');
            font-weight: normal;
        }

:root {
    --primary-color: #31a099;
    --secondary-color: #EDED88;
    --text-color: #000;
    --light-gray: #f5f5f5;
}
.container {
    font-family: montLight;
    
}


h1{
    font-family: montSemiBold;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 15px;
}

.header-text{
    font-family: montLight;
    font-size: 1rem;
    color: var(--text-color);
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 15px;
}


.post {
    background-color: var(--light-gray);
    padding: 5.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    font-size: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.post h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: montRegular;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.read-more:hover {
    background-color: #26807a;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Admin styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 200px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: #26807a;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-list {
    list-style: none;
}

.post-list li {
    padding: 1rem;
    background-color: var(--light-gray);
    margin-bottom: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
}

/* Add these to your existing style.css */
.post-image {
    margin-bottom: 1.5rem;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.current-image {
    margin-bottom: 1rem;
}

.current-image img {
    border: 1px solid #ddd;
    padding: 5px;
    background: white;
}