/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1c1c1c;
    border-bottom: 3px solid #00ff99;
}

.logo img {
    max-height: 50px;
}

/* Navigation */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.nav-links img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.nav-links a:hover {
    color: #00ff99;
}

/* User Auth */
.user-auth {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 10px;
    background: #222;
    border-radius: 5px;
    padding: 10px;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/main-banner.png');
    background-size: cover;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #00ff99;
}

.hero-section p {
    font-size: 18px;
    color: #ddd;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 20px;
}

.cta-btn {
    background: #00ff99;
    padding: 15px 25px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
}

.cta-btn:hover {
    background: #00cc77;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
}

/* Footer */
.site-footer {
    background: #1c1c1c;
    padding: 15px;
    color: white;
}

.sponsor-links a {
    color: #00ff99;
    margin: 0 10px;
}

/* Feature Section - Full Background Images */
.feature {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Ensures text is readable */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px; /* Adjust height for consistency */
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.feature h3 {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.feature p {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

.feature-btn {
    background: #00ff00; /* Green button */
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.feature-btn:hover {
    background: #009900; /* Darker green hover */
}

/* Hover effect for box */
.feature:hover {
    transform: scale(1.05);
}

/* User Menu (Avatar & Dropdown) */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.user-avatar:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: #222;
    border-radius: 5px;
    padding: 10px;
    width: 150px;
    text-align: left;
}

.dropdown-menu a {
    display: block;
    padding: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #333;
}

.construction-btn {
    background-color: #ff0000; /* Red background to indicate WIP */
    color: #fff; /* White text */
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: not-allowed; /* Show not-allowed cursor */
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.construction-btn:hover {
    opacity: 1; /* Slightly highlight on hover */
}
