/* Add any custom styles here */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.hero-section {
    background-color: #ffffff;
    padding: 4rem 0;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.hero-title {
    color: #4A3AFF;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    color: #000000;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-description {
    color: #334155;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-link {
    color: #4a3aff;
    font-weight: 600;
    text-decoration: underline;
}

.profile-card {
    background-color: #fafafb;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out;
    padding: 1.5rem;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-image {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    color: #000000;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.75rem;
}

.profile-location {
    color: #4A3AFF;
    font-size: 0.875rem;
}

.profile-designation, .profile-focus {
    color: #475569;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.profile-label {
    font-weight: 700;
    color: #000000;
}

.connect-wallet-btn, .submit-btn {
    background: #4A3AFF;
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    transition: opacity 0.3s ease;
}

.connect-wallet-btn:hover, .submit-btn:hover {
    opacity: 0.9;
}

.footer {
    background-color: #ffffff;
    color: #1e293b;
    padding: 2rem 0;
}

.footer-title {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #475569;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #1e293b;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: white;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.social-icon:hover {
    opacity: 0.8;
}

.twitter-icon {
    background-color: #1da1f2;
}

.linkedin-icon {
    background-color: #0077b5;
}

.facebook-icon {
    background-color: #1877f2;
}

.profile-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Styles specific to profilEkle page */
#profileForm {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#profileForm label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #000000;
    font-size: 1.125rem;
}

#profileForm label[for="licensed_advisor"] {
    color: #4A3AFF;
    font-weight: 700;
}

#profileForm input[type="text"],
#profileForm input[type="url"],
#profileForm textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8fafc;
    color: #1e293b;
}

#profileForm input[type="text"]:focus,
#profileForm input[type="url"]:focus,
#profileForm textarea:focus {
    outline: none;
    border-color: #4A3AFF;
    box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.1);
}

.add-profile-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #4A3AFF 0%, #7367F0 100%);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 2rem;
}

.add-profile-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#profilePicturePlaceholder {
    border: 2px dashed #4A3AFF;
    transition: border-color 0.3s ease;
}

#profilePicturePlaceholder:hover {
    border-color: #7367F0;
}

@media (max-width: 768px) {
    #profileForm {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}