:root {
    --primary-color: rgba(141, 161, 172, 1);
    --secondary-color: rgba(94, 120, 134, 1);
    --accent-color: rgba(240, 76, 60, 1);
    --light-color: rgba(236, 240, 241, 1);
    --dark-color: rgba(44, 62, 80, 1);
    --text-color: rgba(51, 51, 51, 1);
    --primary-color-transparent: rgba(141, 161, 172, 0.6);
    --secondary-color-transparent: rgba(94, 120, 134, 0.6);
    --accent-color-transparent: rgba(231, 76, 60, 0.6);
    --light-color-transparent: rgba(236, 240, 241, 0.6);
    --dark-color-transparent: rgba(44, 62, 80, 0.7);
    --text-color-transparent: rgba(51, 51, 51, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-color-transparent);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 0px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
}

/* Hero Section */
#home {
    background: var(--dark-color);
    min-height: 100vh;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto 0 100px;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    background: var(--dark-color-transparent);
    padding: 10px;
    line-height: 1.2;
    border-radius: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
    background: var(--dark-color-transparent);
    padding: 10px;
    border-radius: 5px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: center;
}

.countdown-item {
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 5px;
    border-radius: 10px;
    min-width: 80px;
    display: inline-block;
}

.countdown-label {
    font-size: 1rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-color-transparent);
    font-weight: 600;
}

.cta-button {
    display: flex;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    margin: 10px;
    justify-content: center;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
#features {
    background-color: var(--dark-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Signup Section */
#signup {
    background: linear-gradient(rgba(46, 64, 83, 0.8), rgba(46, 64, 83, 0.9)), url('../images/signupbackground.jpg') no-repeat center center/cover;
}

.signup-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--dark-color);
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--light-color);
    color: var(--dark-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
#ourmission {
    background: var(--light-color);
}

.ourmission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.ourmission-image {
    flex: 1;
    min-width: 300px;
}

.ourmission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ourmission-text {
    flex: 1;
    min-width: 300px;
}

.ourmission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.ourmission-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Contact Section */
#contact {
    background: var(--dark-color)
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 25%;
    font-size: 1.2rem;
    padding: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.instagram:hover svg{
    fill: #E1306C;
}

.reddit:hover svg{
    fill: #FF4500;
}

.threads:hover svg{
    fill: #000000;
}

.tiktok:hover svg{
    fill: #000000;
}

.youtube:hover svg{
    fill: #FF0000;
}

.facebook:hover svg {
    fill: #1877F2;
}

.x:hover svg {
    fill: #000000;
}

.threads:hover svg {
    fill: #000000;
}

/* About Section */
#faq {
    background: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.dark-section-header h2 {
    color: var(--dark-color);
}

.faq-item {
    background: var(--dark-color);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color:var(--dark-color-transparent)
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--light-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    margin-bottom: 20px;
    color: var(--light-color);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: ruby;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    max-width: 800px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
}

.modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    color: var(--text-color);
}

.modal-body h3 {
    color: var(--dark-color);
    margin: 20px 0 10px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .countdown-item {
        margin-right: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
        color: var(--dark-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .countdown-container {
        justify-content: center;
    }
    
    .countdown-item {
        margin: 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
        min-width: 60px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .countdown-item {
        margin: 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 10px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}