@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #c27ba0 0%, #673ab7 0%, #8e44ad 0%, #a2527a 0%, #682d4c 55%, #2e1020 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  width: 100%;
}

.logo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

nav.nav-bar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

nav.nav-bar a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav.nav-bar a:hover {
  color: #ffffff;
}

.icons {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

main.main-presentation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-grow: 1;
}

.left-side, .right-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.name {
  color: #ffb7c5;
}

p {
  color: #fce4ec;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 320px;
}

.info-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.button {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.glow-button {
  background: #ffffff;
  color: #000000;
  border: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.glow-button:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.outline-button {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.avatar-area img {
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(255, 192, 203, 0.5));
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  width: 100%;
}

.copyright {
  font-size: 0.85rem;
  color: #83759e;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.github { background: #333; }
.linkedin { background: #0077b5; }
.instagram { background: #e1306c; }
.twitter { background: #000; }

@media (max-width: 900px) {
  main.main-presentation {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .left-side, .right-side {
    align-items: center;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
  }
}

/*ABOUT ME*/

.about-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5%;
  width: 100%;
}

.about-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.profile-photo-area {
  flex-shrink: 0;
}

.profile-photo {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(255, 183, 197, 0.4);
  box-shadow: 0 0 30px rgba(255, 183, 197, 0.3);
}

.tag {
  display: inline-block;
  background: rgba(255, 183, 197, 0.15);
  color: #ffb7c5;
  border: 1px solid rgba(255, 183, 197, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.quick-info {
  display: flex;
  gap: 1.5rem;
  margin: 0.8rem 0 1.2rem 0;
  color: #f3d2e2;
  font-size: 0.95rem;
}

.quick-info i {
  color: #ffb7c5;
  margin-right: 0.4rem;
}

.bio-text {
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-section h2 i {
  color: #ffb7c5;
}

.subtitle {
  color: #fce4ec;
  margin-bottom: 1.5rem;
}

.timeline {
  border-left: 2px solid rgba(255, 183, 197, 0.3);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -1.95rem;
  top: 0.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffb7c5;
  box-shadow: 0 0 10px #ffb7c5;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: #ffffff;
}

.timeline-date {
  font-size: 0.85rem;
  color: #ffb7c5;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.timeline-content p {
  max-width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.skill-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.skill-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffb7c5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: rgba(255, 183, 197, 0.12);
  border: 1px solid rgba(255, 183, 197, 0.25);
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-soft {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fce4ec;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 197, 0.4);
}

.card-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card h4 {
  color: #ffb7c5;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.gallery-card p {
  max-width: 100%;
  font-size: 0.88rem;
}

.letterboxd-link {
   color: #ffb7c5;
}

@media (max-width: 850px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .quick-info {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/*PROJECTS*/

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  width: 100%;
}

.projects-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.projects-header .subtitle {
  margin: 1rem auto 0 auto;
  max-width: 600px;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.project-img-wrapper {
  width: 100%;
  height: 100%;
  max-height: 220px;
  max-width:650px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 197, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card:hover {
  border-color: rgba(255, 183, 197, 0.4);
  transform: translateY(-4px);
}

.project-content {
  display: flex;
  flex-direction: column;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-content h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.project-desc {
  max-width: 100%;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #ffb7c5;
}

.project-details h4 {
  font-size: 0.9rem;
  color: #ffb7c5;
  margin-bottom: 0.5rem;
}

.project-details ul {
  list-style: none;
  padding-left: 0;
}

.project-details li {
  font-size: 0.85rem;
  color: #fce4ec;
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2rem;
}

.project-details li::before {
  content: "•";
  color: #ffb7c5;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.project-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-links {
    flex-wrap: wrap;
  }
}

/*CONTACT*/

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5%;
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header .subtitle {
  margin: 1rem auto 0 auto;
  max-width: 550px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 183, 197, 0.4);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 183, 197, 0.12);
  border: 1px solid rgba(255, 183, 197, 0.25);
  color: #ffb7c5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-text h3 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.card-text p {
  color: #fce4ec;
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #fce4ec;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffb7c5;
  box-shadow: 0 0 10px rgba(255, 183, 197, 0.3);
}

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/*FEEDBACKS CONTACT FORMS*/

.alert-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.alert-success {
  color: #a8ffb2;
  background: rgba(168, 255, 178, 0.1);
  border: 1px solid rgba(168, 255, 178, 0.3);
}

.alert-error {
  color: #ff9e9e;
  background: rgba(255, 158, 158, 0.1);
  border: 1px solid rgba(255, 158, 158, 0.3);
}
