/*
Theme Name: Kadence Child
Description: Kadence child theme
Template: kadence
Version: 1.0
*/
.header-html{
	background-color:red !important;
	width:100%;
	height:30px;
}

.site-header-item {
	width: 100%;
}


.header-class{
	width:100%;
	display:flex;
	justify-content: space-between;
	align-items:center;
}

.header-item{
	flex:1;
	display:flex;
	align-items:center;
	font-size:14px;
}

.header-item i {
	margin-right:5px;
}
#teamDivHrOne {
	width:60%;
	height:5px;
	background-color:orange;
	margin-right:20%;
	margin-left:20%;
}

#teamDivHrTwo{
	width:50%;
	height:3px;
	background-color:blue;
	margin-right:25%;
	margin-left:25%;
}

.teamDiv {
	justify-content: center;
}
.teamDiv p {
	color:red;
	text-align:center;
}

#teamDivLinkText a {
	color: gray;
	font-size: 18;
}


.team-member-profile {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-photo {
    margin-right: 20px;
}

.profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-details {
    flex: 1;
    text-align: left;
}

.full-name {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.details {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 768px) {
    .team-member-profile {
        max-width: 80%;
        padding: 15px;
    }

    .profile-photo img {
        width: 120px;
        height: 120px;
    }

    .full-name {
        font-size: 22px;
    }

    .details {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .team-member-profile {
        max-width: 95%;
        flex-direction: column;
        padding: 10px;
        align-items: center;
    }

    .profile-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .profile-photo img {
        width: 100px;
        height: 100px;
    }

    .full-name {
        font-size: 20px;
    }

    .details {
        font-size: 14px;
    }
}

/* Style for the custom post sumbit from */
.post-submit-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Heading style */
.post-submit-form h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Label styles */
.post-submit-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

/* Input fields styling */
.post-submit-form input[type="text"],
.post-submit-form input[type="date"],
.post-submit-form input[type="file"],
.post-submit-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

/* Input focus state */
.post-submit-form input[type="text"]:focus,
.post-submit-form input[type="date"]:focus,
.post-submit-form input[type="file"]:focus,
.post-submit-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Textarea specific styles */
.post-submit-form textarea {
    height: 100px;
    resize: vertical; /* Allow vertical resizing */
}

/* Submit button styling */
.post-submit-form input[type="submit"] {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

/* Submit button hover effect */
.post-submit-form input[type="submit"]:hover {
    background: #0056b3;
}

/* Styles for the image upload area */
.image-upload {
    border: 2px dashed #007bff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    position: relative;
}

.upload-area {
    cursor: pointer;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
}

/* Change border color on hover */
.upload-area:hover {
    border-color: #0056b3;
}

/* Styles for the replace image button */
#replaceImage {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

/* Change button color on hover */
#replaceImage:hover {
    background: #0056b3;
}


/* Button container style */
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Styles for the buttons, in case you want to keep them separate */
.button-container input[type="submit"]
{
    background: #007bff; 
    color: #ffffff; 
    border: none; 
    padding: 10px 15px; 
    border-radius: 4px; 
    cursor: pointer; 
    margin-right: 10px;
}

.button-container button {
    background: #dc3545;
    color: #ffffff; 
    border: none; 
    padding: 10px 15px; 
    border-radius: 4px; 
    cursor: pointer;

}

.button-container input[type="submit"],
.button-container button {
    flex: 1; /* Make them equal width */
    margin-right: 10px;
    transition: background-color 0.3s;
}

/* Remove right margin for the last button */
.button-container button:last-child {
    margin-right: 0;
}

/* Optional hover effects */
.button-container input[type="submit"]:hover {
    background: #0056b3;
}

.button-container button:hover {
    background: #c82333;
}


/* Responsive styles */
@media (max-width: 600px) {
    .post-submit-form {
        padding: 15px;
    }

    .post-submit-form h1 {
        font-size: 20px;
    }

    .post-submit-form input[type="submit"] {
        font-size: 14px;
    }
}


.posts-grid {
        padding: 20px;
        text-align: center;
    }
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    .grid-item {
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s;
        padding: 15px;
        background-color: #ffffff;
    }
    .grid-item:hover {
        transform: scale(1.05);
    }
    .post-image {
        width: 100%;
        height: 40%;
        border-radius: 5px;
    }
    .post-title {
        font-size: 1.5em;
        margin: 10px 0;
    }
    .post-author,
    .post-date,
    .post-description {
        color: #555;
    }
    .view-button {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 15px;
        background-color: #0073aa;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    .view-button:hover {
        background-color: #005177;
    }
    
    /* No content Our Actitivies Page */
  .no-content-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.no-content-area p {
    font-size: 1.5rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .no-content-area {
        height: auto;
        padding: 15px;
    }
    
    .no-content-area p {
        font-size: 1.2rem;
    }
}

