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

body {
    background-color: #3C2F2F;
    color: #F5E6CC;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(60, 47, 47, 0.9);
    padding: 15px 0;
    text-align: center;
}

.navbar a {
    color: #F5E6CC;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.support-content a {
    color: #A65F46;
    text-decoration: underline;
}

.docs-content a {
    color: #A65F46;
    text-decoration: underline;
}

.navbar a:hover {
    color: #A65F46;
}

/* Hero */
.hero {
    height: 60vh; /* Reduced from 100vh for better balance */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(60, 47, 47, 0.8), rgba(60, 47, 47, 0.8)), url('oryx-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Ensure h1 stands out */
.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.btn {
    background-color: #F5F1E9;
    color: #3C2F2F;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #A65F46;
    color: #F5E6CC;
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 80px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.features {
    background-color: #E0C9A6;
    color: #000000;
}

.download {
    background-color: #4A4A4A;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: #F5E6CC;
    color: #3C2F2F;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Download-specific tweaks */
.download .feature-card {
    background: #F5E6CC;
    color: #3C2F2F;
}

.checksum {
    font-size: 0.9rem;
    word-break: break-all;
}

.download-info {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-info pre {
    background: #3C2F2F;
    color: #F5E6CC;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    text-align: left;
    margin: 20px 0;
}

.download-info code {
    font-family: 'Courier New', monospace;
}

/* Add to the bottom of style.css */

/* Docs-specific styles */
.docs {
    background-color: #3C2F2F;
    color: #F5E6CC;
}

.docs-content {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.docs-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    color: #F5F1E9;
}

.docs-content h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #E0C9A6;
}

.docs-content p {
    margin: 10px 0;
}

.docs-content pre {
    background: #4A4A4A;
    color: #F5E6CC;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    margin: 10px 0;
}

.docs-content code {
    font-family: 'Courier New', monospace;
}



.docs-content a:hover {
    color: #F5F1E9;
}

/* Add to the bottom of style.css */

/* Support-specific styles */
.support {
    background-color: #3C2F2F;
    color: #F5E6CC;
}

.support-content {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.support-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    color: #F5F1E9;
}

.support-content p {
    margin: 10px 0;
}



.support-content a:hover {
    color: #F5F1E9;
}

.support .feature-card {
    background: #F5E6CC;
    color: #3C2F2F;
}

.footer {
    background-color: #4A4A4A;
    color: #F5E6CC;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Ensure footer text wraps nicely */
.footer p {
    max-width: 800px;
    margin: 0 auto;
}