@charset "UTF-8";




.header {
  display: grid;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%; /* More modern spacing */
}

header h1 {
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

/* Style for the black navigation bar */
#myLinks {
  background-color: black; /* Black background for the nav bar */
  color: white; /* White text for contrast */
  text-align: center; /* Center-align the links */
  padding: 10px 0; /* Add some padding for better spacing */
  position: relative; /* Ensure it sits below the banner */
  width: 100%; /* Full width of the page */
  display: none; /* Hidden by default */
}

#myLinks a {
  color: white; /* White text for links */
  text-decoration: none; /* Remove underline from links */
  padding: 10px 15px; /* Add padding around links */
  display: inline-block; /* Make links inline-block for spacing */
}

#myLinks a:hover {
  background-color: #575757; /* Dark gray background on hover */
  border-radius: 5px; /* Optional: Add rounded corners on hover */
}



.topnav {
  overflow: hidden;
  background-color: #FFF;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none; /* Hidden by default */
}

.topnav #myLinks.show {
  display: block; /* Show when the "show" class is added */
}

/* Style navigation menu links */
.topnav a {
  color: black;
  text-decoration: none;
  font-size: 25px;
  display: block;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: white;
}

/* Style the active link (or home/logo) */
.active {

  background: linear-gradient(lightblue, white);
  color: black;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* A soft off-white is easier on the eyes than pure white */
}

#day1 {
    font-size: 25px;
	height: auto;
}
#p1{
    margin-top: 25px;
    max-width: 250px;
    font-size: 35px;
}

#intro {
    color: black;
    padding: 2px;
    margin: 10px;
}

#daily{
    font-family: 'Roboto', sans-serif;
    color: #21354f;
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.daily-section {
    padding: 2rem 5%;
    max-width: 1140px;
    margin: 0 auto;
}

.daily-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), #eef7ff);
    border: 1px solid rgba(79, 141, 221, 0.18);
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(38, 77, 137, 0.12);
    overflow: hidden;
}

.daily-card__content {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) minmax(220px, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    align-items: center;
    padding: 2rem;
}

.daily-card__text {
    margin-right: 1.75rem;
}

.daily-card__image {
    margin-left: 1.75rem;
}

.daily-card__text {
    min-width: 0;
}

.daily-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    background: #d6e7ff;
    color: #13519a;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.daily-number {
    color: #0f2a55;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1;
}

.daily-details p {
    margin: 0.85rem 0;
    color: #30475f;
    font-size: 1rem;
    line-height: 1.75;
}

.daily-card__image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.daily-card__image > * {
    margin-bottom: 1rem;
}

.daily-card__image > :last-child {
    margin-bottom: 0;
}

.daily-card__ad {
    width: 100%;
}

.top-ad-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(91, 186, 213, 0.2);
}

.top-ad-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.bottom-ad-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(91, 186, 213, 0.2);
}

.bottom-ad-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #e9f4ff 0%, #f6fbff 100%);
    border: 2px dashed rgba(70, 132, 208, 0.35);
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #1c4f7f;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 1rem;
}

.image-placeholder span {
    max-width: 90%;
    font-size: 1rem;
}

#deep{
    color: black;
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .daily-card__content {
        grid-template-columns: 1fr;
    }

    .daily-section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .daily-card__content {
        padding: 1.25rem;
    }

    .daily-badge {
        font-size: 0.85rem;
        padding: 0.55rem 0.9rem;
    }

    .daily-number {
        font-size: 2.7rem;
    }
}

#myInput{
    background-color: #008CBA;
    font-size: 18px;
    text-align: center;
    color: white;
}

#video-container {
	position:relative;
	padding-bottom:50%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.auto-resizable-iframe {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin: 1rem 0;
}

.auto-resizable-iframe div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.auto-resizable-iframe iframe {
	width: 100%;
	height: 100%;
	border: none;
}

#muffin{
    font-size: 13px;
    color: black;
}
#column3{
  background: white; /* For browsers that do not support gradients */
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  height: auto;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}

.content{
    font-family: 'Roboto', sans-serif;
    color: black;
    font-size: 20px;
    background: white;
    padding: 15px;
    line-height: 1.5;

}
#credits{
  text-align: center;
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  height: auto;
}
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5bbad5, #4682B4, #5bbad5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section:last-child {
    margin-bottom: 0;
}

.footer-section h3 {
    color: #5bbad5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #87ceeb;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #b8c5d1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8c5d1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #5bbad5;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(91, 186, 213, 0.1);
    border: 1px solid rgba(91, 186, 213, 0.3);
    border-radius: 50%;
    color: #5bbad5;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.social-link:hover {
    background: #5bbad5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 186, 213, 0.3);
}

.newsletter-signup {
    margin-top: 1rem;
}

.newsletter-signup small {
    color: #87ceeb;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-column-gap: 0;
        grid-row-gap: 1.5rem;
        padding: 2rem 1rem 1rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1rem;
    }
}


/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {

}

/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {

}

/* Smartphones (portrait) ----------- */
@media only screen
and (max-width : 320px) {

}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {

}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {

}

/* iPad 3 (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio : 2),
only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (min-resolution: 192dpi) {

}

/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {

}

/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {

}

/* Retina displays ----------- */
@media  only screen
and (-webkit-min-device-pixel-ratio : 2),
only screen
and (min-resolution: 192dpi) {

}
