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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #16222A, #3A6073);
    color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lta-button {
    background-color: #282c34;
    color: #61dafb;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.lta-button:hover {
    background-color: #61dafb;
    color: #282c34;
}

/* Menu icon */
.menu-icon {
    display: none;
    font-size: 28px;
    color: #61dafb;
    cursor: pointer;
}

/* Navbar */
nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

nav .logo {
    font-size: 28px;
    font-weight: bold;
    color: #61dafb;
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #61dafb;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 60%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding-top: 100px;
        gap: 20px;
        align-items: center;
        transition: right 0.3s ease;
    }
    
    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 15px 0;
    }
}

.lta-button {
    background-color: #282c34;
    color: #61dafb;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.lta-button:hover {
    background-color: #61dafb;
    color: #282c34;
}

.cta-button {
    background-color: #61dafb;
    color: #282c34;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #282c34;
    color: #61dafb;
}

/* Navbar */
nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

nav .logo {
    font-size: 28px;
    font-weight: bold;
    color: #61dafb;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #61dafb;
}

/* Documentation Section */
.documentation {
    padding: 80px 20px;
    max-width: 1025px;
    margin: 80px auto auto auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease;
}

.documentation h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #61dafb;
}

.documentation p {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

/* Command Sections */
.command-section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.command-section h2 {
    margin-bottom: 20px;
    color: #61dafb;
    text-align: left;
    font-size: 24px;
    border-bottom: 2px solid #61dafb;
    padding-bottom: 10px;
}

.command-item {
    background: #233945a3;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}

.command-item h3 {
    font-size: 20px;
    color: #61dafb;
    margin-bottom: 5px;
}

.command-item code {
    display: block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #61dafb;
    font-family: monospace;
    color: #eee;
    font-size: 16px;
    margin-bottom: 10px;
}

.command-item p {
    color: #eee;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #16222A;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

footer p {
    margin-bottom: 10px;
}

footer .social-links a {
    color: #61dafb;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #f0f0f0;
}


/* Close Icon */
.close-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    color: red;
    font-weight: 1000;
}

nav ul.active .close-icon {
    display: block; /* Displayed only when the menu is open */
}

/* Dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #282c34;
    min-width: 150px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: #f0f0f0;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.dropdown-content li a:hover {
    background-color: #61dafb;
    color: #282c34;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
