/* --- Global Styles & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.content-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 50px;
    color: #333;
}

/* --- 1. Header/Navigation --- */
.main-header {
    background-color: #1A1A2E;
    color: white;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2em;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li a {
    color: white;
    padding: 10px 15px;
    font-size: 0.9em;
}

.btn-signup {
    color: white;
    padding: 8px 15px;
    border: 1px solid white;
    border-radius: 4px;
    
}
.btn-signup:hover {
    color: white;
    padding: 8px 15px;
    border: 1px solid #ff760d;
    border-radius: 4px;
  
}

/* --- 2. Hero Section --- */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
        url('../img/slide1.jpg') center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* --- 3. User Path Selector (Find vs. Offer) --- */
.user-path-selector {
    padding: 0 5%;
    max-width: 1200px;
    margin: -30px auto 50px; 
}

.selector-container {
    display: flex;
    max-width: 600px; 
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.path-option {
    flex-grow: 1;
    text-align: center;
    padding: 20px 10px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-option i {
    margin-right: 10px;
    font-size: 1.2em;
}

.find-services-btn {
    background-color: white;
    color: #555;
    border-right: 1px solid #ddd;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.find-services-btn:hover {
    background-color: #eeeeee;
    color: #333;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.offer-services-btn {
    background-color: #4A90E2; 
    color: white;
}
.offer-services-btn:hover {
    background-color: #63abff; 
    color: white;
}

/* --- 4. Showcase Your Potential / Provider Info --- */
.showcase-potential {
    padding-top: 50px;
}

/* Profile/Action Cards Grid (4-column) */
.profile-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.action-card {
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transition: all 0.5s;
}
.action-card:hover {
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	filter: contrast(120%) hue-rotate(-20deg);
    transform: scale(1.1);
    transition: all 0.5s;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
}

.avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-action .avatar-placeholder {
    border-color: #4A90E2; 
}

.action-card h4 {
    font-size: 1em;
    margin-bottom: 5px;
}

.action-card p {
    font-size: 0.8em;
    color: #777;
}

/* Workflow Icons (3-column) */
.provider-workflow-icons {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 600px;
    margin: 40px auto;
}

.workflow-item {
    text-align: center;
    flex-basis: 30%;
}

.workflow-icon {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
}

.btn-join-artist {
    display: inline-block;
    background-color: #4A90E2; 
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-join-artist:hover {
    display: inline-block;
    background-color: #63abff; 
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* --- 5. Footer --- */
.main-footer {
    background-color: #e6e6e6;
    padding: 40px 5%;
    font-size: 0.9em;
    text-align: left;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.social-icons i {
    margin-right: 10px;
    font-size: 1.2em;
}

.copyright {
	color:#fff;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}
.linkmenu {
	color:#fff;
	text-decoration:none;
}
.linkmenu:hover {
	color:#ff760d;
	text-decoration:none;
}

.continut{
	margin-top:43px;
}

.umbra_alb{
	text-shadow: 2px 2px 5px #ffffff;
}

.umbra_negru{
	text-shadow: 2px 2px 5px #000000;
}

.content_site{
	margin-top:50px!important;
}
