/* Base Styles */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #333333; /* Dark Gray */
    --accent-color: #555555; /* Medium Gray */
    --text-color: #FFFFFF;
    --background-color: #000000;
    --card-color: #1A1A1A;
    --button-color: #333333;
    --button-hover: #444444;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    font-weight: 500;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1000;
}

.language-switcher button {
    background: var(--button-color);
    color: var(--text-color);
    border: none;
    padding: 5px 10px;
    margin: 0 2px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-left: auto;
    order: 2;
}

.language-switcher button.active {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    position: relative;
    z-index: 100;
    padding: 1.5rem 5% 1.5rem 2%; /* Top, Right, Bottom, Left */
    justify-content: flex-start; /* Align items to the left */
}

.logo {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
    margin-left: 2%; /* Small buffer */
}

.logoImage {
    height: 50px;
    width: 50px;
    padding-left: 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-left: 2%; /* Small buffer */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-rechts {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 35%;
}

/* Buttons */
button {
    background: var(--button-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

button:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 1rem 6rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('fondo.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 span {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#signup-btn {
    background: var(--primary-color);
    color: var(--background-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Steps & Assets Sections */
.steps, .assets {
    padding: 5rem 5%;
    text-align: center;
}

.steps h2, .assets h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.step-cards, .asset-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card, .asset-card {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 8px;
    width: 280px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.card:hover, .asset-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.asset-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.asset-card h3, .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Auth Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: var(--card-color);
    margin: 10% auto;
    padding: 2.5rem;
    width: 350px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-content input {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin: 1rem 0;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    background: var(--background-color);
    color: var(--text-color);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .step-cards, .asset-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card, .asset-card {
        width: 80%;
    }
}