@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Zen+Dots&display=swap');

/*--Base--*/
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Domine", serif;
    background-color: #1c1c1c;
    color: #f0f0f0;
    line-height: 1.6;
}
h2 {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal
}
h2 span {
  color: #00c4ff;
}
.blue {
  color: #00c4ff;            
  transition: all 0.3s ease; 
}
.blue:hover {
  text-shadow: 0 0 10px #00c4ff, 
               0 0 20px #00c4ff, 
               0 0 30px #00c4ff;
  color: #80e9ff; 
}
a {
    color: #00c4ff;
    text-decoration: none;
}

/*--Layout--*/
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

/*--Header/Nav--*/
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1c1c1c; 
  border-bottom: 1px solid #2a2a2a;
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #f0f0f0;
}
.brand span {
    color: #aaa;
    font-weight: 400;
}
.logo {
  height: 50px;   
  width: auto;
  border-radius: 6px; 
}
nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #aaa;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
nav a:hover {
    color: #00c4ff;
    background: #232323;
}
nav a.active {
  color: #111;
  background: #00c4ff;
  box-shadow: 0 0 12px #00c4ff; /* glow effect */
  font-weight: bold;
}

/*--Hero/Headings--*/
.hero {
    text-align: center;
    padding: 56px 0;
}
.hero h2 {
    font-size: 2rem;
    margin: 0 0 10px;
}
.hero-image {
  position: relative;
  display: inline-block;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 196, 255, 0.4);
}

/* Circular image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* Cyan glow ring */
.hero-image::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 255, 0.4) 0%, transparent 70%);
  z-index: 1;
  filter: blur(8px);
}

/* Layout */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
  padding: 60px 0;
}

.hero-text {
  max-width: 500px;
}

.hero-text h2 {
  font-family: "Zen Dots", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text h3 {
  color: #aaa;
  font-weight: normal;
  margin-bottom: 16px;
}
.hero-text h2 span {
  color: #00c4ff;
}
.hero-text h3 span {
  color: #00c4ff;
}
.hero-text p {
  margin-bottom: 20px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image img {
    width: 80%;
  }
}


/*--Cards--*/
.card-link { 
  display: block; 
  color: inherit; 
  text-decoration: none; 
}
.card-link h4 { margin-top: 10px; }
.detail-hero {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 16px;
  border-radius: 10px;
  border: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.meta {
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  margin: 10px 0 20px; 
  padding: 0;
  list-style: none;
}
.pill {
  background:#262626; 
  border:1px solid #333; 
  border-radius: 999px;
  padding: 6px 12px; 
  font-size:.9rem;
}
.back {
  display:inline-block; 
  margin-top: 12px; 
  padding: 8px 12px; 
  border-radius: 6px;
  background:#232323; 
  color:#eaeaea; 
  text-decoration:none; 
  border:1px solid #333;
}
.back:hover { background:#2c2c2c; }
.project-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.section {
    padding: 40px 0;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.card {
    background: #262626;
    padding: 16px;
    border-radius: 10px;
    width: 300px;
    transition: transform .2s, background #2f2f2f;
}
.card:hover {
    transform: scale(1.03);
    background: #00c3ff8e;
}
.card h4 {
    margin: 0 0 6px;
    color: #00c4ff;
}

/*--Table--*/
.project-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  max-width: 900px;
  background: #1e1e1e;
  color: #f0f0f0;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
}
.project-table th,
.project-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #333;
  text-align: left;
}
.project-table th {
  background: #2a2a2a;
  font-weight: bold;
  color: #00c4ff;
}
.project-table tr:last-child td {
  border-bottom: none;
}
.project-table tr:hover {
  background: #2f2f2f;
}

/*--About--*/
.prose {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.about-section {
  padding: 80px 0;
  text-align: left;
}
.about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-image {
  position: relative;
  width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0,196,255,0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.about-image img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 35px rgba(0,196,255,0.6));
}
.about-content {
  max-width: 550px;
}
.about-content h2 {
  font-family: 'Zen Dots', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}
.about-content h2 span {
  color: #00c4ff;
}
.about-content p {
  color: #e0e0e0;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: #00c4ff;
  font-family: 'Zen Dots', sans-serif;
}
.skill-list { 
  list-style: none; 
  padding: 0; 
  margin: 12px 0 0; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
} 
.skill-list li { 
  background: #262626; 
  border: 1px solid #333; 
  padding: 6px 10px; 
  border-radius: 8px; 
  color: #e6e6e6; 
  font-size: 0.95rem; 
}
.glow-skill li {
  border-color: #00c4ff;
  background: rgba(0,196,255,0.1);
  box-shadow: 0 0 8px rgba(0,196,255,0.25);
  transition: 0.3s;
}
.glow-skill li:hover {
  background: #00c4ff;
  color: #111;
  box-shadow: 0 0 16px #00c4ff;
}

/*--Footer--*/
footer {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #2a2a2a;
    color: #aaa;
}
footer p {
  margin: 6px 0;
}
footer a {
  color: #00c4ff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}


/* ---- Contact Form Styling ---- */
form {
  max-width: 600px;
  margin: 0 auto;
  background: #1e1e1e;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

form label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #e6e6e6;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #262626;
  color: #f0f0f0;
  font-size: 0.95rem;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #00c4ff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 196, 255, 0.4);
}

form textarea {
  resize: vertical;
}

/* Radio + Checkbox inline */
form input[type="radio"],
form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

form p {
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #e6e6e6;
}

/* Submit button (reuses .btn class) */
form button.btn {
  margin-top: 20px;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

form button.btn:hover {
  background: #00a8d4;
}

/* Mock Website */
.project-overview {
  padding: 80px 0;
  text-align: left;
  max-width: 900px;
}
.project-overview h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}
.project-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.project-header img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  border: 2px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.project-info p {
  color: #9FE8FF;
  margin: 6px 0;
}
.project-description, .project-process, .project-pages, .project-results, .project-reflection {
  margin-bottom: 40px;
}
.project-description p, .project-results p, .project-reflection p {
  color: #e0e0e0;
  line-height: 1.6;
}
.project-process ul {
  list-style: none;
  padding: 0;
}
.project-process li {
  color: #F9F7F1;
  margin-bottom: 10px;
}
.page-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.page-item {
  background: #14163C;
  border: 1px solid #9FE8FF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(159, 232, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.page-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(159, 232, 255, 0.3);
}
.page-item h4 {
  color: #9FE8FF;
  font-family: 'Cinzel Decorative', serif;
  margin-bottom: 8px;
}
.page-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
