/*home*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0; /* Light gray */
    display: flex;
    flex-direction: column;
}

header {
    background-color: #0056b3; /* Blue */
    padding: 10px 0;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

#hero {
    text-align: center;
    background-color: #ffffff;
    padding: 50px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

#hero h1 {
    color: #0056b3; /* Blue */
    font-size: 36px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

#hero img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

#about, #videos, #subscription {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    animation: fadeInUp 2s ease-in-out;
}

#about h2, #videos h2, #subscription h2 {
    color: #0056b3; /* Blue */
    text-align: center;
    margin-bottom: 20px;
}

#about p {
    text-align: center;
    font-size: 16px;
}

#videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#videos .video-item {
    text-align: center;
}

#videos .video-item img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s;
}

#videos .video-item img:hover {
    transform: scale(1.05);
}

#videos .video-item p {
    margin-top: 10px;
    font-size: 14px;
}

#subscription form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#subscription label {
    margin-top: 10px;
    font-weight: bold;
}

#subscription input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
}

#subscription button {
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #ffd700; /* Gold */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#subscription button:hover {
    background-color: #e6b800; /* Darker gold */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*contact form*/


header {
    background-color: #0056b3; /* Blue */
    padding: 10px 0;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

#contact {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

#contact h1 {
    color: #0056b3; /* Blue */
    text-align: center;
    margin-bottom: 20px;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-top: 10px;
    font-weight: bold;
}

#contact input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

#contact input:focus {
    outline: none;
    border-color: #0056b3; /* Blue */
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

#contact button {
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #ffd700; /* Gold */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #e6b800; /* Darker gold */
}

#contact p {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

#contact a {
    color: #0056b3; /* Blue */
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}



/*morning cry*/


#morning-cry {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

#morning-cry h1 {
    color: #0056b3; /* Blue */
    text-align: center;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}


/*contact form*/

main {
    flex: 1;
    padding: 20px;
}

#partnership {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

#partnership h1 {
    color: #0056b3; /* Blue */
    text-align: center;
    margin-bottom: 20px;
}

#partnership p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

#partnership form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#partnership label {
    margin-top: 10px;
    font-weight: bold;
    align-self: center;
}

#partnership input, #partnership select, #partnership textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid blue;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
    outline: none;
}

#partnership button {
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #ffd700; /* Gold */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#partnership button:hover {
    background-color: #e6b800; /* Darker gold */
}





footer {
    background-color: #0056b3; /* Blue */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

footer .social-media {
    margin-top: 10px;
}