
:root {
    --primary: #cb0c9f;
    --secondary: #3f8efc;
    --background: #ffffff;
    --text-main: #222222;
    --text-subtle: #555555;
}

body.dark-mode {
    --background: #1a1a1a;
    --text-main: #e0e0e0;
    --text-subtle: #aaaaaa;
    background-color: var(--background);
    color: var(--text-main);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    padding: 2rem;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.hero {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 5vh;
}

.toggle-theme {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-subtle);
    margin-bottom: 3rem;
}

.cta-group {
    margin-bottom: 3rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #a3087f;
}

.text-link {
    font-size: 0.95rem;
    color: var(--text-subtle);
    text-decoration: underline;
}

.social-icons {
    margin-top: 3rem;
    margin-top: 2rem;
}

.social-icons a {
    margin: 0 0.75rem;
    font-size: 1.5rem;
    color: var(--text-main);
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--primary);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-subtle);
    margin-bottom: 2rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.contact-info a {
    color: var(--text-subtle);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
  .profile-pic {
    width: 120px;
    height: 120px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .social-icons a {
    font-size: 1.25rem;
    margin: 0 0.5rem;
  }

  .cta-group {
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 1rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}


.modal {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}
.modal-content iframe {
  width: 100%;
  height: 80vh;
  border: none;
}
.close {
  color: #aaa;
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #cb0c9f;
}

.cta-group-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
}

/*
.toggle-theme-icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
  transition: transform 0.2s ease;
}
.toggle-theme-icon:hover {
  transform: scale(1.1);
}
*/
.toggle-theme-icon {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  padding: 0.5rem 0.6rem;
  background-color: rgba(0, 0, 0, 0.05); /* light theme default */
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 2000;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.toggle-theme-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

