@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #000000;
    color: #f0f8ff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Styles */
.image-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.logo_image {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 100;
}

/* Desktop Navigation */
.desktop-nav {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 100;
}

.navi {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: white;
    text-align: center;
    border-radius: 50px;
}

.navi li a {
    display: inline-block;
    text-align: center;
    color: #000000;
    text-decoration: none;
    padding: 10px 35px;
    transition: background-color 0.3s ease;
}

.navi li a:hover {
    background-color: #FFD700;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 100;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 30px;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 15px 20px;
}

.mobile-nav-list a:hover {
    color: #FFE900;
}

.featured_post{
 	color: yellow;
    font-family: "komu-a", sans-serif;
    font-size: 64px;
    padding: 0px 40px 10px 20px;
	margin-bottom: 0;
	margin-top: 20px;
	text-align: center;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.hero-text h1 {
    font-family: "Komu-B", Helvetica;
    font-weight: 400;
    font-size: 90px;
    letter-spacing: 0;
    line-height: normal;
    color: #FFF600;
    margin: 0px;
}

.hero-text p {
    font-family: "Montserrat", sans-serif;
    color: white;
    font-size: 24px;
}

.hero-button {
    display: inline-block;
    background-color: #FFE900;
    color: #000000;
    font-family: "Komu-B", Helvetica;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 40px;
    margin-top: 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: #000000;
    color: #FFE900;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.post-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.post-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-title {
    font-family: "komu-a", sans-serif;
    color: #FFE900;
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-excerpt {
    font-family: "Montserrat", sans-serif;
    color: aliceblue;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
    flex-grow: 1;
}

.read-more-button {
    background-color: #FFE900;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: center;
    margin-top: auto;
}

.read-more-button:hover {
    background-color: black;
    color: #FFE900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 233, 0, 0.3);
}

img{
	border-radius: 3px;
}

.knowledge-page .container {
    margin-bottom: 50px;
	padding-bottom: 0;
}

.my-rectangle {
    width: 100%;
    height: 110px;
    background-color: #ffe900;
    margin: 50px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.my-rectangle h2 {
    font-family: "Komu-B", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 96px;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
}

.join-now-button {
    background-color: black;
    color: #ffe900;
    font-family: "Komu-B", Helvetica;
    font-size: 48px;
    font-weight: 400;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.join-now-button:hover {
    background-color: #000000;
    color: #FFE900;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.logo-and-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.follow-us-text {
    font-family: "Komu-B", sans-serif;
    color: #FFE900;
    font-size: 24px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #FFE900;
}

/* Responsive Design - Knowledge Page Specific */
@media screen and (max-width: 1024px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px;
    }
    
    .featured_post {
        font-size: 48px;
        padding: 0px 20px 10px 20px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .my-rectangle {
        padding: 25px 40px;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .logo_image {
        width: 80px;
        height: 80px;
        top: 15px;
        left: 20px;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    .featured_post {
        font-size: 36px;
        padding: 0px 15px 10px 15px;
        margin-top: 15px;
    }
    
    .post-item img {
        height: 250px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .post-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .read-more-button {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .my-rectangle {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
        margin: 40px 0;
    }

    .my-rectangle h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .join-now-button {
        font-size: 24px;
        padding: 15px 30px;
        width: auto;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-right {
        justify-content: center;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .logo_image {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 15px;
    }
    
    .container {
        padding: 15px;
        gap: 20px;
    }
    
    .featured_post {
        font-size: 28px;
        padding: 0px 10px 10px 10px;
        margin-top: 10px;
    }
    
    .post-item img {
        height: 200px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .post-excerpt {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .read-more-button {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .my-rectangle {
        padding: 25px 15px;
        margin: 30px 0;
    }

    .my-rectangle h2 {
        font-size: 24px;
        line-height: 1.1;
    }

    .join-now-button {
        font-size: 18px;
        padding: 12px 25px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .follow-us-text {
        font-size: 20px;
    }
    
    .social-icons img {
        width: 28px;
        height: 28px;
    }
    
    .footer-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-right a {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .logo_image {
        width: 50px;
        height: 50px;
    }
    
    .featured_post {
        font-size: 24px;
        padding: 0px 8px 8px 8px;
    }
    
    .post-item img {
        height: 180px;
    }
    
    .post-content {
        padding: 12px;
    }
    
    .post-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .post-excerpt {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .read-more-button {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .my-rectangle h2 {
        font-size: 20px;
    }

    .join-now-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-right a {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.navi li a:focus,
.mobile-nav-list a:focus,
.read-more-button:focus,
.join-now-button:focus,
.hamburger-btn:focus {
    outline: 2px solid #FFE900;
    outline-offset: 2px;
}

@media print {
    .mobile-nav,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .featured_post {
        color: black;
    }
    
    .post-title {
        color: black;
    }
}