* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(135deg, #5BCEFA, #F5A9B8, #FFFFFF);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #5BCEFA;
  margin: 1rem 0;
}
.navbar{
  
  margin:0 !important;
  margin-bottom: 0px !important;
}
.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5BCEFA, #F5A9B8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.navbar a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-bar {
  background: #fff;
  border-top: 4px solid #5BCEFA;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

.social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
}

.social-list li a {
 	display: block;
	width: 25px;
	height: 25px;
	margin: 0 0 0 5px;
	text-indent: -9999em;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-list li a:hover {
  background: #5BCEFA;
}

.site-container {
  max-width: 1200px;
  width: 90%;
  margin: 2rem auto;
  flex: 1;
  margin:0 auto;
  margin-top:10px;
}

.post-header {
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid #5BCEFA;
}
.post-content{
  word-break: break-word;
  word-wrap: break-word;
}
.post-title {
  font-size: 2rem;
  color: #F5A9B8;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #5BCEFA, #F5A9B8);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.site-footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  position: relative;
}

.footer-stripes {
  height: 6px;
  display: flex;
}

.footer-stripes::before {
  content: "";
  flex: 1;
  background: #5BCEFA;
}

.footer-stripes::after {
  content: "";
  flex: 1;
  background: #F5A9B8;
}


.section-wide{
	background: white;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.post-title span{

}

a.nav-facebook {
  background-color: #ff4669 !important;
  background-image: url('../images/header_icons.png') !important;
  background-repeat: no-repeat !important;
background-position: -17px 1px !important;
}



a.nav-twitter,a.nav-ask, a.nav-facebook,a.nav-plus, a.nav-pinterest, a.nav-instagram, a.nav-google, a.nav-youtube, a.nav-tumblr, a.nav-rss, a.nav-email {
	display: block;
	width: 25px;
	height: 25px;
	margin: 0 0 0 5px;
	text-indent: -9999em;
}
a.nav-twitter {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: 6px 1px !important;
}
a.nav-ask {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -341px 1px !important;
}

a.nav-pinterest {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -41px 1px !important;
}
a.nav-plus {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -235px 1px !important;
}
a.nav-instagram {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -65px 1px !important;
}
a.nav-google {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -87px 1px !important;
}
a.nav-youtube {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -178px 1px !important;
}
a.nav-tumblr {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -320px 1px !important;
}
a.nav-email {
	background-color: #ff4669 !important;
	background-image: url('../images/header_icons.png') !important;
	background-repeat: no-repeat !important;
	background-position: -292px 1px !important;
}


/* Hide toggle on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 4rem;
  cursor: pointer;
  z-index: 1100;
  position: fixed;
  bottom: 5px;
  right: 10px;
}

/* Fullscreen overlay menu */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #5BCEFA, #F5A9B8, #FFFFFF);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.nav-overlay ul {
  list-style: none;
  text-align: center;
}

.nav-overlay ul li {
  margin: 1rem 0;
}

.nav-overlay ul li a {
  font-size: 2rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.nav-overlay.active {
  display: flex;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Responsive trigger */
@media (max-width: 700px) {
  nav.navbar {
    display: none;
  }
  .menu-toggle {
    display: block !important;
  }
}

.menu-toggle {
  background: #5BCEFA;   /* trans blue */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.menu-toggle:hover {
  background: #F5A9B8;   /* trans pink on hover */
}



/* Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 10px;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.caption {
    font-size:14px;
    text-align:center;
    margin-top:10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

.lightbox .close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}




/* Grid */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    justify-items: center;
    margin: 20px;
}

.video-card {
    cursor: pointer;
    border-radius: 20px;
    background-color: #FBE3E4;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.03);
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-title {
    padding: 8px;
    color: #FF69B4;
    font-weight: bold;
}

/* Popup */
.youtube-popup {
    display: none;
    position: fixed;
    top:0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.youtube-popup iframe {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.youtube-popup .close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}
