/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
    background-color: #1a1a1a;
}

/* Static Background */
.gradient-background {
    background: #e85a19;
    min-height: 100vh;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Add a subtle texture overlay */
.gradient-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFeSURBVGhD7ZixSgNBFEXnCwRBQbC0sLGxEGtBQbBPY2VjY2ltY2PtN/gBVjYpUvkJgp2lpaJFCsFE1vPijCzLzibZDcybc+FCWJg5l/dmdm0wGo2OVFXVAuuK/1eMZ0t0Y/OO0Io7rYLQijutgtCKO62C0Io7/waBK95V4GUHfXVKK+50NoMv24b3DfhpFFpxJ2/7uUMPc9GKO3nNHzEPrbiTFzzGEFpxJy94hyG04k5e8BlDaMWdvOA7htCKO3nBCYbQijt5wW8MoRV38oKXGEIr7uQFxxhCK+7kBY8whFbcyfv8GUNoxZ284DmG0Io7ecEdDKEVd/KC6U+6oRV38oKnGEIr7uQFDzGEVtwZXtA/tx/gK6AXWMgLPs9FK+4ML7iH35kFxbzgB67Z3DzQijt50d9c4AqncKdFoBV3shCL+ISX+IibOIdH2MYFoBV3Woe04k7ZQKAVdzhCK9NhMPgBrO6V5xKW1iIAAAAASUVORK5CYII=');
    opacity: 0.03;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Top Navigation Styles */
.top-navigation {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lf-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 60px;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

/* Main Content Styles */
.mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
}

/* Footer Styles */
footer {
    margin-top: 80px;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-info a {
    color: white;
    text-decoration: underline;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .top-navigation {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-links {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .title {
        font-size: 3.8rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .mission {
        font-size: 1.1rem;
        padding: 25px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .lf-logo-img {
        border-radius: 10px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .mission {
        font-size: 1rem;
        padding: 20px;
    }
    
    .container {
        padding: 20px 15px;
    }
} 