/* Import Junction Font */
@font-face {
    font-family: 'Junction';
    src: url('fonts/junction-bold.eot');
    src: url('fonts/junction-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/junction-bold.woff') format('woff'),
         url('fonts/junction-light.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Junction';
    src: url('fonts/junction-light.eot');
    src: url('junction-light.eot?#iefix') format('embedded-opentype'),
         url('fonts/junction-light.woff') format('woff'),
         url('fonts/junction-light.ttf') format('truetype'),
         url('fonts/junction-light.svg#junctionlight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Junction';
    src: url('fonts/junction-regular.eot');
    src: url('junction-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/junction-regular.woff') format('woff'),
         url('fonts/junction-regular.ttf') format('truetype'),
         url('fonts/junction-regular.svg#junctionregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000;
    --secondary: #ff6b35;
    --accent: #f7931e;
    --light: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: absolute;
    top: 0;
    width: 100%;
    background: black;
    z-index: 10;
    padding: 0 0 0 0;
    overflow: hidden;
    justify-content: space-between;
    display: flex;
    align-items: center; /* Add this to vertically center items */
}
.logo {
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 75px;
    height: 75px;
    z-index: 2;
    margin-top: .5rem;
    margin-left: .5rem;
}
nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .25rem .2rem;
    position: relative;
    z-index: 1;
    margin-left: 1rem;
    height: 80px;
    flex: 1; /* Add this to make nav take remaining space */
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 2;
    color: white;
    /* Remove flex-direction: row-reverse; */
    margin-left: auto; /* Add this to push nav links to the right */
    margin-right: 2rem; /* Add some margin from the edge */
}
.nav-links a {
    font-family: 'Junction', sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    color: white;
    font-size: 1rem;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--secondary);
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
    align-items: center;
}

.hero h1 {
    font-family: 'Junction', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    align-items: center;
}

.hero p {
    font-family: 'Junction', sans-serif;
    font-size: 1.3rem;
    margin:0 auto 2rem auto;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section */
.mission {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Social Feed Section */
.social-feed {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-feed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feed-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feed-item:hover {
    transform: scale(1.02);
}

.feed-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feed-content {
    padding: 1.5rem;
}

.feed-content p {
    color: #666;
    margin-bottom: 1rem;
}

.feed-date {
    color: #999;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .mission h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feed-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .mission, .social-feed {
        padding: 4rem 1rem;
    }
    
    .features {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .mission h2 {
        font-size: 1.8rem;
    }
    
    .mission p {
        font-size: 1.1rem;
    }
    
    .features h2, .social-feed h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}