﻿body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #1a73e8;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #444;
}
section {
  margin-bottom: 1.5rem;
}
.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  position: relative;
}
.skills-list li:before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #1a73e8;
}
.contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}
.contact a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: color 0.2s;
}
.contact a:hover {
  color: #0d47a1;
}
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .container {
    padding: 16px 6px;
    max-width: 400px;
  }
  h1 {
    font-size: 1.4rem;
  }
  .profile-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .profile-desc {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .profile-contact {
    flex-direction: column;
    gap: 0.8rem;
  }
  .profile-contact a {
    font-size: 1rem;
  }
  .badges-list {
    flex-direction: column;
    align-items: center;
  }
  .badge {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.6em 1em;
  }
}
.profile-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f1f6fb;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(26,115,232,0.06);
}
.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,115,232,0.10);
  overflow: hidden;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.profile-info {
  flex: 1;
}
.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #1a73e8;
}
.profile-title {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0.4rem;
}
.profile-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.7rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.profile-contact {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.profile-contact a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.2s;
}
.profile-contact a:hover {
  color: #0d47a1;
}
.badges-section {
  margin-top: 2.5rem;
  text-align: center;
}
.badges-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 1.1rem;
}
.badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.badge {
  display: inline-block;
  background: #e3f0fc;
  color: #1a73e8;
  border-radius: 20px;
  padding: 0.5em 1.2em;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(26,115,232,0.07);
  transition: background 0.2s, color 0.2s;
  border: 1px solid #b3d3f7;
}
.badge:hover {
  background: #1a73e8;
  color: #fff;
} 
.badges-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.8rem 0 0.5rem;
  color: #333;
  text-align: left;
}

.cta-button {
  display: inline-block;
  background-color: #1a73e8;
  color: #fff;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(26, 115, 232, 0.2);
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #0d47a1;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.close:hover,
.close:focus {
  color: #1a73e8;
}

.modal-content h3 {
  color: #1a73e8;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

.submit-btn {
  background-color: #1a73e8;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0d47a1;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Mobile Modal Styles */
@media (max-width: 600px) {
  .modal-content {
    margin: 10% auto;
    width: 90%;
    max-width: none;
    padding: 1.5rem;
    max-height: 85vh;
  }
  
  .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 16px; /* iOS zoom önleme */
  }
  
  .submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  .close {
    font-size: 24px;
    right: 0.8rem;
    top: 0.8rem;
  }
}
