@charset "utf-8";
/* CSS Document */

/* Reset some default styles */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
            background-color: #1a1a1a;
            color: #000000;
}
        header {
            position: relative;
            padding: 20px;
            background-color: #0D004C;
            text-align: center;
			 max-width: 100%;
        }

        .logo img {
            width: 100px;
            height: auto;
        }

        .logo h1 {
            margin: 0;
            font-size: 28px;
            color: #F3F3F3;
        }

        /* Magical Navigation Menu */
        nav {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
			align-content: center;
		
			
        }

        .menu-icon {
            display: none;
            font-size: 28px;
            color: #F3F3F3;
            cursor: pointer;
            position: relative;
            z-index: 10;
			border: thin #496DE1 solid;
				border-radius: 8px;
			padding: 5px;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            justify-content: center;
            position: relative;
			width: 100%;
        }

        nav ul li {
            margin: 0 20px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #F3F3F3;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:before {
            content: '\2728'; /* Magical sparkle icon */
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: opacity 0.3s ease, left 0.3s ease;
        }

        nav ul li a:hover:before {
            left: -30px;
            opacity: 1;
        }

        nav ul li a:hover {
            color: #fff;
            text-shadow: 0 0 10px #ffcc00;
        }

        /* Responsive Menu */
        @media screen and (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                background-color: rgba(51, 51, 51, 0.9);
                position: absolute;
                top: 40px;
                right: 10px;
                
                
                border-radius: 10px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            }

            nav ul.show {
                display: flex;
            }

            .menu-icon {
                display: block;
            }

            nav ul li {
                margin: 10px 0;
            }
        }

        .hero {
            background: url("../../images/LMMCBG.png") no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .hero-content h2 {
            font-size: 48px;
            text-shadow: 0 0 20px #000;
        }

        .hero-content p {
            font-size: 20px;
            margin: 20px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #ff4500;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #ff5714;
        }

        .about, .events, .gallery-preview, .cta .meh {
            padding: 50px 20px;
            text-align: center;
            background-color: #222;
            margin: 20px 0;
        }

        .about h2, .events h2, .gallery-preview h2, .cta h2 .meh h2 {
            font-size: 36px;
            color: #8DA8FF;
            margin-bottom: 20px;
        }

        .gallery-images img {
            width: 30%;
            margin: 10px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .gallery-images img:hover {
            transform: scale(1.1);
        }
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1; /* Pushes the footer to the bottom if content is short */
}
/* Hide footer on screens smaller than 768px */
footer {
    display: none;
}

/* Show footer on tablets and desktops */
@media screen and (min-width: 768px) {
    footer {
        display: block;
        background-color: #222;
        color: white;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    footer a {
        color: #fff;
        text-decoration: underline;
    }
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 20px;
}

footer a {
    color: #fff;
    text-decoration: underline;
}


/* Container for blog content */
.blog-container {
  max-width: 900px;
  margin: auto;
  /*padding: 10px;*/
}

/* Blog post style */


.blog-post:hover {
  transform: translateY(-2px);
}

.blog-post h2 {
  margin-bottom: 10px;
  color: #333;
}

.blog-post small {
  color: #888;
   
}

.blog-post {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Ensures image and content align seamlessly */
  transition: transform 0.2s ease;
  padding: 0; /* Remove padding so image touches the edges */
}

.blog-post img {
  width: 100%;
  height: 30%;
  object-fit: cover;
  display: block;
  margin: 0;
  border: none;
  border-radius: 0; /* Remove any rounding from the image */
}

.post-content {
  padding: 0px 20px 20px;
    
}
.blog-post p {
  margin: 5px 0;
}

.blog-post .tags {
  color: #555;
  font-size: 0.9em;
  margin-top: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
 
    .mahatma-title {padding: 0px 10px;}

 /* .blog-post {
    padding: 15px;
  }

  .blog-post h2 {
    font-size: 1.4em;
  }*/
}

footer {
    background-color: #0D004C;
    color: #E2DCFE;
    text-align: center;
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

footer a {
    color: lightgrey;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}



.vote-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.vote-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #555;
    transition: color 0.3s, transform 0.2s;
}

.vote-buttons button:hover {
    color: #d00000;
    transform: scale(1.2);
}

.vote-buttons .up-count,
.vote-buttons .down-count {
    font-weight: bold;
    margin: 0 5px;
   color: #555;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #f2f2f2;*/
    padding: 10px;
    font-size: 0.85rem;
    margin-top: 5px;
    /*border-radius: 5px;*/
    border-top: thin solid #E1E1E1;
}

.tags-left {
    color: #555;
}

.vote-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vote-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: color 0.2s ease;
}

.vote-buttons button.clicked {
    color: #007BFF; /* blue */
}

.vote-buttons .thumb-down.clicked {
    color: #FF3B30; /* red */
}

.vote-buttons span {
    font-size: 0.9rem;
    margin: 0 4px;
}


.post-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}
.mahatma-title h1{
    color: #F3F3F3;
}

.post-content {
    /*background-color: #FBFBFB;
    padding: 20px 20px;*/
 
    font-size: 0.85rem;
    margin-top: 0px;
    border-radius: 5px;
}
.blog-content {
  /*white-space: pre-wrap;*/
  line-height: 1.6;
  margin-top: 0em;
}
.blog-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  /*white-space: pre-wrap;*/
  color: #222;
}


.blog-content p {
    margin-bottom: 1em;
}

.title-bottom {
    margin-bottom: 10px; /* Adjust as needed */
}

.title-bottom h2 {
    margin: 0;
    font-size: 1.5rem;
}

.date-right small {
       display: block;
    margin-top: 1px;
    margin-bottom: 5px;
    color: #777;
    font-size: 0.55rem; /* Smaller than before */
    line-height: 1.1;
}
.event-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-top: 1px;
    font-size: 0.95em;
    background: #E9F4FF;
    padding: 8px 10px;
    /*border-radius: 6px;*/
    border-bottom: thin solid #E1E1E1;
   
}

.event-info i {
    margin-right: 8px;
    color: #555;
}

.invite-link {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1em;
    margin-left: auto;
}

.invite-link:hover {
    color: #0056b3;
}

.share-buttons a, .share-buttons button {
  margin-right: 10px;
  text-decoration: none;
  font-size: 1.2em;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}
.share-buttons i:hover {
  color: #007bff;
}
.event-link {
  margin-top: 10px;
  font-size: 1rem;
    padding: 15px;
}

.event-link a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.event-link a:hover {
  color: #0056b3;
}

.event-link i {
  color: #e83e8c;
  font-size: 1.1rem;
}
.event-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}

.event-actions button,
.event-actions a {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #444;
}

.share-buttons {
  position: relative;
  display: inline-block;
  /*  margin: 0 auto;
    max-width: 400px;*/
}

.share-toggle {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  color: #444;
}

.share-popup a,
.share-popup button {
  display: inline-block;
  margin: 6px;
  font-size: 1.1em;
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.share-popup a:hover,
.share-popup button:hover {
  color: #007bff;
}
.share-popup {
  display: none;
  position: absolute;
  top: 100%;
  /*left: 250%;*/
  transform: translateX(-90%);
  background: white;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 180px;
  max-width: 90vw;
  box-sizing: border-box;
  white-space: nowrap;
    margin: 0 auto;
}

@media (max-width: 600px) {
  .share-popup {
    left: 50%;
    transform: translateX(-90%);
    min-width: auto;
    width: auto;
    max-width: 95vw;
    text-align: center;
  }
}