
:root {
  --pink-50: #ffe0e9;
  --pink-100: #ffc2d4;
  --pink-200: #ff9ebb;
  --pink-300: #ff7aa2;
  --pink-400: #e05780;
  --pink-500: #b9375e;
  --pink-600: #8a2846;
  --pink-700: #522e38;

  --text-dark: #2b1a22;
  --text-light: #ffffff;

  --radius: 12px;
  --shadow-soft: 0 4px 12px rgba(82, 46, 56, 0.15);
  --shadow-card: 0 6px 18px rgba(82, 46, 56, 0.18);

  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Unica One", sans-serif;
  background: var(--pink-50);
  color: var(--text-dark);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;  
}

html, body {
  height: 100%;
}

h1, h2, h3 {
  font-family: "Metamorphous", serif;
  color: var(--pink-700);
  letter-spacing: 0.5px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  width: 100%;
  background: linear-gradient(
    to right,
    var(--pink-700) 0% 12.5%,
    var(--pink-600) 12.5% 25%,
    var(--pink-500) 25% 37.5%,
    var(--pink-400) 37.5% 50%,
    var(--pink-300) 50% 62.5%,
    var(--pink-200) 62.5% 75%,
    var(--pink-100) 75% 87.5%,
    var(--pink-50) 87.5% 100%
  );
  padding: 0.75rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo {
  height: 52px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Metamorphous", serif;
  font-size: 1.85rem;
  color: var(--pink-50);
  letter-spacing: 1px;
}

.brand-tagline {
  font-family: "Unica One", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--pink-100);
  text-transform: uppercase;
  letter-spacing: 2px;
  gap: 2px;

}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link-custom {
  font-family: "Metamorphous", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  opacity: 0.7;
}

.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 700px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 5rem;     
  line-height: 1.1;     
  text-align: center;
  text-shadow: 0 0 8px rgba(185, 55, 94, 0.45),
    0 0 18px rgba(224, 87, 128, 0.35);
}

.hero-subtitle {
  margin-top: -0.25rem;
  font-family: "Unica One", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--pink-600);
  text-align: center
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 6px rgba(185, 55, 94, 0.35),
      0 0 12px rgba(224, 87, 128, 0.25);
  }
  50% {
    text-shadow:
      0 0 10px rgba(185, 55, 94, 0.55),
      0 0 20px rgba(224, 87, 128, 0.45);
  }
  100% {
    text-shadow:
      0 0 6px rgba(185, 55, 94, 0.35),
      0 0 12px rgba(224, 87, 128, 0.25);
  }
}

.hero-title {
  animation: glowPulse 3s ease-in-out infinite;
}

footer {
  padding: 1.5rem 1rem 0.5rem;
  text-align: center;
  background: var(--pink-700);
  color: var(--pink-50);
  font-family: "Unica One", sans-serif;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease, color 0.4s ease;
}

.footer-credit {
  font-size: 0.9rem;
  opacity: 0.9;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulseDark {
  0% {
    text-shadow:
      0 0 8px var(--pink-500),
      0 0 16px var(--pink-600);
  }
  50% {
    text-shadow:
      0 0 14px var(--pink-600),
      0 0 28px var(--pink-700);
  }
  100% {
    text-shadow:
      0 0 8px var(--pink-500),
      0 0 16px var(--pink-600);
  }
}

:root.dark-mode {
  --pink-50: #1a0f14;
  --pink-100: #24141b;
  --pink-200: #3a1e29;
  --pink-300: #522e38;
  --pink-400: #8a2846;
  --pink-500: #b9375e;
  --pink-600: #e05780;
  --pink-700: #ff9ebb;

  --text-dark: #ffeef5;
  --text-light: #ffffff;
}

.dark-mode {
  color: var(--text-light);
}

.dark-mode body {
  background: var(--pink-100);
}

.dark-mode .hero-title,
.dark-mode .hero-subtitle {
  color: var(--text-light);
}

.dark-mode .section {
  background: transparent; 
}

:root.dark-mode .hero-title {
  animation: glowPulseDark 3s ease-in-out infinite;
  text-shadow:
    0 0 8px var(--pink-500),
    0 0 16px var(--pink-600),
    0 0 24px var(--pink-700);
}

.dark-toggle {
  background: var(--pink-400);
  color: var(--pink-50);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: "Metamorphous", serif;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 1rem;
}

.dark-toggle:hover {
  background: var(--pink-600);
  box-shadow: var(--shadow-soft);
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: "Metamorphous", serif;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--pink-200);
  color: var(--pink-700);
  border-color: var(--pink-400);
}

.btn-primary:hover {
  background: var(--pink-100);
  box-shadow: 0 6px 14px rgba(82, 46, 56, 0.35);
}

.btn-secondary {
  background: var(--pink-200);
  color: var(--pink-700);
  border-color: var(--pink-400);
}

.btn-secondary:hover {
  background: var(--pink-100);
  box-shadow: 0 6px 14px rgba(82, 46, 56, 0.35);
}

.dark-mode button,
.dark-mode .btn {
  background: var(--pink-500);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
   0 0 6px rgba(255, 155, 200, 0.25),
    0 0 12px rgba(255, 155, 200, 0.15);
  transition: var(--transition);
}

.dark-mode button:hover,
.dark-mode .btn:hover {
  background: var(--pink-700); 
  box-shadow:
    0 0 10px rgba(255, 155, 200, 0.35),
    0 0 20px rgba(255, 155, 200, 0.25),
    0 0 28px rgba(255, 155, 200, 0.18);
  transform: translateY(-2px);
}

.dark-mode button:active,
.dark-mode .btn:active {
  transform: translateY(0);
  box-shadow:
    0 0 4px rgba(255, 255, 255, 0.2),
    0 0 10px rgba(255, 255, 255, 0.1);
}

.btn,
button {
  box-shadow:
    0 0 6px rgba(185, 55, 94, 0.25),
    0 0 12px rgba(224, 87, 128, 0.18);
}

.btn:hover,
button:hover {
  box-shadow:
    0 0 10px rgba(185, 55, 94, 0.35),
    0 0 20px rgba(224, 87, 128, 0.28),
    0 0 28px rgba(224, 87, 128, 0.18);
  transform: translateY(-2px);
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.tv-frame {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-radius: 28px 28px 22px 22px; 
  background: rgba(97, 22, 74, 0.25);
  backdrop-filter: blur(6px);
  border: 3px solid rgba(255, 0, 120, 0.35);
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.35),
    inset 0 0 18px rgba(0, 0, 0, 0.35); 

  position: relative;
  overflow: hidden; 
}

.tv-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0.4;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem 1rem;
}

.contact-form label {
  font-family: "Unica One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius:10px;
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.dark-mode .tv-frame {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 0, 120, 0.45);
  box-shadow:
    0 0 35px rgba(255, 0, 120, 0.25),
    inset 0 0 22px rgba(0, 0, 0, 0.6);
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
  background: rgba(48, 4, 28, 0.7);
  border-color: var(--accent);
  color: var(--text-light);
}

main.page-wrapper {
  padding-top: 0.;
}

.page-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-wrapper1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.section {
  padding-top: 0;
}

.section-header {font-size: 1.5rem;     
  line-height: 1.1;     
  text-align: center;
  text-shadow: 0 0 8px rgba(185, 55, 94, 0.45),
    0 0 18px rgba(224, 87, 128, 0.35);}


.section-text {
  margin-top: 0;
  font-family: "Unica One", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--pink-600);
  text-align: center
}

.section-header1 {
  font-size: 1.5rem;     
  line-height: 1.1;     
  text-align: center;
  text-shadow: 0 0 8px rgba(185, 55, 94, 0.45),
    0 0 18px rgba(224, 87, 128, 0.35);
  }

:root.dark-mode h1,
:root.dark-mode h2,
:root.dark-mode h3,
:root.dark-mode h4,
:root.dark-mode h5,
:root.dark-mode h6,
:root.dark-mode .section-header,
:root.dark-mode .section-header1,
:root.dark-mode .section-text {
  color: var(--text-light);
  text-shadow:
    0 0 8px var(--pink-500),
    0 0 16px var(--pink-600),
    0 0 24px var(--pink-700);
  animation: glowPulseDark 3s ease-in-out infinite;
}

.dark-mode .hero-title {
  color: #ffb7ff;
  text-shadow: 0 0 12px #ff66ff;
}

.dark-mode .hero-subtitle {
  color: #e8d7ff;
}

.dark-mode .card-title {
  color: #ffd6ff;
}

.dark-mode .card-text {
  color: #e8e8e8;
}

.projects .hero-inner {
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.projects .hero-logo {
  width: 140px;
}

.projects .hero-title {
  font-size: 3rem;
}

.projects .hero-subtitle {
  font-size: 1.1rem;
}

.section {
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-text {
  color: var(--pink-600);
  font-size: 1.1rem;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card-link-wrapper {
  text-decoration: none;
}

.card {
  background: var(--pink-100);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(82, 46, 56, 0.25);
}

.card-title {
  margin-bottom: 0.5rem;
  color: var(--pink-700);
  font-family: "Metamorphous", serif;
}

.card-text {
  color: var(--pink-600);
  font-family: "Unica One", sans-serif;
}


.dark-mode .section-header .hero-title {
  color: var(--text-light);
  text-shadow: 0 0 12px #ff66ff;
}

.dark-mode .section-header .hero-subtitle {
  color: var(--text-light);
  text-shadow: 0 0 8px #ff66ff; 
}

.dark-mode .section-header .hero-title {
  animation: glowPulseDark 3s ease-in-out infinite;
   0 0 8px var(--pink-500),
    0 0 16px var(--pink-600),
    0 0 24px var(--pink-700);
}

dark-mode .section {
  background: transparent; 
}

