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

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #141414;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    font-size: 1em;
}

/* Header Styles */
header {
    width: 100%;
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
}

.logo img {
    height: 30px;
}

nav {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

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

nav li {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

nav a {
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 12px;
    line-height: 1.5;
}

nav a:hover,
nav a:focus {
    color: #ffa500;
}

details {
    position: relative;
    display: flex;
    align-items: center;
    margin-top:
}

summary {
    padding: 12px;
    list-style: none;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

summary::-webkit-details-marker {
    display: none;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffa500;
    color: black;
    backdrop-filter: blur(10px);
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

details[open] summary {
    color: black;
    background-color: #ffa500;
}

details[open] .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    white-space: nowrap;
}

.dropdown a:hover,
.dropdown a:focus {
    background-color: #333;
}

.contact-btn {
    margin-left: 0;
    background-color: #ffa500;
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-btn:hover,
.contact-btn:focus {
    background-color: #ff8c00;
    color: #000;
}

.menu-toggle {
    display: none;
}

.alert {
    display: block;
    padding: 20px;
    background-color: #9f2219;
    border-bottom: 4px solid #7d160f;
    color: white;
    text-align: center;
}

.article {
    border-radius: 4px;
    background: #1e1e1e;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('YOUR_BACKGROUND_IMAGE_URL_HERE') no-repeat center center/cover;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons button,
.hero-buttons a {
    align-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-buttons .primary {
    background-color: #ffa500;
    color: #000;
}

.hero-buttons .primary:hover,
.hero-buttons .primary:focus {
    background-color: #ff8c00;
}

.hero-buttons .secondary {
    background-color: transparent;
    border: 2px solid #ffa500;
    color: #ffa500;
}

.hero-buttons .secondary:hover,
.hero-buttons .secondary:focus {
    background-color: #ffa500;
    color: #000;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    color: #ffa500;
    font-weight: bold;
    grid-column: 1 / 2;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column: 2 / 4;
    gap: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffa500;
}

.footer-social {
    grid-column: 4 / 5;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
    color: #ffa500;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #888;
}

/* Burger Menu Styles */
#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .header-container {
        padding: 20px;
    }

    .menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 100vh;
        width: 100%;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 99999;
    }

    #menu-toggle~label {
        transition: all 0.3s ease;
    }

    #menu-toggle:checked~label {
        transform: rotate(90deg);
    }

    #menu-toggle:checked~nav {
        left: 0;
    }

    nav ul {
        background: rgb(21, 21, 21);
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav li {
        margin: 0;
        width: 100%;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        background-color: #1a1a1a;
        width: 100%;
    }

    nav .contact-btn {
        margin: 0;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }

    details {
        width: 100%;
    }

    summary {
        display: block;
        padding: 15px 20px;
        text-align: center;
        background-color: #1a1a1a;
        width: 100%;
    }

    .dropdown {
        position: static;
        width: 100%;
        background-color: #1a1a1a;
    }

    .dropdown a {
        padding: 15px 20px;
        background-color: #272727;
        width: 100%;
    }

    .features h2 {
        font-size: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-column: 1 / -1;
    }

    .footer-social {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-copyright {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .features h2 {
        font-size: 26px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/* Article Pages */
.article-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 20px;
}

.article-section {
    margin-bottom: 2rem;
}

.article-section h2 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.article-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-metadata {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}