/* style.css global pentru site-ul FitMode */

/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #8a8a8a 0%, #6a11cb 100%);
    color: #fff;
    min-height: 100vh;
}

/* NAVBAR */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    transition: background 0.3s ease;
}
.navbar-container.scrolled {
    background: rgba(0,0,0,0.85);
}

.navbar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.navbar a {
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.navbar a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

@media(max-width:768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .navbar {
        justify-content: center;
        width: 100%;
    }
    .navbar a {
        padding: 10px 12px;
        font-size: 0.95em;
    }
}

/* HERO SECTION */
.hero-section {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb 0%, #8a8a8a 100%);
    color: white;
}
.hero-section .page-title {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.hero-section .subtitle {
    font-size: 1.3em;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

/* CTA BUTTON */
.cta-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    transition: 0.3s;
    display: inline-block;
}
.cta-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* CONTENT SECTION */
.content-section {
    padding: 60px 20px;
    background: rgba(255,255,255,0.95);
    color: #000;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.content-section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.content-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* CONTACT FORM */
.contact-form input, .contact-form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1em;
}
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.8);
    color: #fff;
}
