/* General Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header and Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #a9a9a9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 70%);
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 1rem auto;
    color: #a9a9a9;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fff;
    color: #000;
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.hero-image-placeholder {
    width: 80%;
    max-width: 1000px;
    height: 500px;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Ensures the image respects the border-radius */
}

.hero-image-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scales the image to cover the container */
    background: #000;
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.feature-item:nth-child(even) .feature-text {
    order: 2;
}

.feature-text h2 {
    font-size: 3rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 1.2rem;
    color: #a9a9a9;
    line-height: 1.7;
}

.feature-image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
   
    overflow: hidden; /* Ensures the image respects the border-radius */
}

.feature-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scales the image to cover the container */
}

.feature-image-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scales the video to cover the container */
    background: #000;
}

/* Design Section */
.design-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.design-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.design-copy {
    padding: 2.25rem 2.5rem;
}

.design-copy h2 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.design-copy p {
    color: #a9a9a9;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
}

.design-highlights {
    margin: 0;
    padding-left: 1.2rem;
    color: #cfcfcf;
    line-height: 1.9;
}

.design-highlights li::marker {
    color: #9ad0ff;
}

.design-media {
    height: 420px;
}

.design-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.design-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tutorial Section */
.tutorial-section {
    text-align: center;
    padding: 100px 2rem;
    background-color: #111;
}

.tutorial-section h2 {
    font-size: 3rem;
    font-weight: 600;
}

.tutorial-intro {
    font-size: 1.2rem;
    color: #a9a9a9;
    max-width: 500px;
    margin: 1rem auto 4rem;
}

.tutorial-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
}

.step-image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.step-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.step-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #a9a9a9;
}

/* Footer */
.main-footer-section {
    text-align: center;
    padding: 100px 2rem;
}

.footer-content h2 {
    font-size: 2.5rem;
}

.footer-note {
    margin-top: 1rem;
    color: #a9a9a9;
}

.footer-links {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #a9a9a9;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #a9a9a9;
    text-decoration: none;
}

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

/* Admin Panel */
.admin-panel {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    min-width: 220px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.admin-panel-header {
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 10px;
}

.admin-panel-note {
    color: #a9a9a9;
    font-size: 0.8rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple responsive solution */
    }

    .main-header {
        padding: 1rem;
    }

    .hero {
        padding: 100px 1rem 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin: 1rem auto 2rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .hero-image-placeholder {
        width: 95%;
        height: 250px;
        margin-top: 2rem;
    }

    .hero-image-placeholder video {
        object-fit: contain;
    }

    .features-section {
        padding: 50px 1rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-item:nth-child(even) .feature-text {
        order: 0;
    }

    .feature-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-text p {
        font-size: 1.1rem;
    }

    .feature-image-placeholder {
        height: 250px;
        width: 100%;
    }

    .feature-image-placeholder video {
        object-fit: contain;
        background: #000;
    }

    .design-section {
        padding: 50px 0.5rem;
        overflow-x: hidden;
    }

    .design-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .design-copy {
        padding: 1.25rem 1.5rem;
        margin: 0 0.5rem;
    }

    .design-copy h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .design-copy p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .design-highlights {
        padding-left: 1rem;
        margin: 1rem 0;
    }

    .design-highlights li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .design-media {
        height: 220px;
        margin: 0 0.5rem;
    }

    .design-video {
        object-fit: contain;
        background: #000;
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .tutorial-section {
        padding: 50px 1rem;
    }

    .tutorial-section h2 {
        font-size: 2rem;
    }

    .tutorial-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step-video {
        height: 200px;
        object-fit: contain;
        background: #000;
    }

    .step-image {
        height: 200px;
    }

    .footer-content h2 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .admin-panel {
        right: 12px;
        bottom: 12px;
        min-width: 200px;
    }
}
