:root {
  --blue-dark: #010b27;      /* main classic blue */
  --blue-soft: #1E3A8A;      /* secondary blue for sections/buttons */
  --cream-light: #ac8d59;    /* main text */
  --cream-soft: #b38962;     /* soft background */
  --accent-light: #93C5FD;   /* hover/extra highlight */
}

/* ===== BODY ===== */
body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--blue-dark);
  color: var(--cream-light);
  margin: 0;
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.custom-nav {
  background-color: var(--blue-dark);
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.custom-nav .navbar-brand {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream-light);
}

.custom-nav .brand-highlight {
  color: var(--cream-soft);
}

.custom-nav .nav-link {
  color: var(--cream-light);
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.custom-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--cream-soft);
  transition: width 0.3s;
}

.custom-nav .nav-link:hover {
  color: var(--cream-soft);
  transform: translateY(-2px);
}

.custom-nav .nav-link:hover::after {
  width: 100%;
}

.custom-nav .theme-btn {
  background-color: var(--cream-soft);
  color: var(--blue-dark);
  border: none;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.custom-nav .theme-btn:hover {
  background-color: var(--cream-light);
  color: var(--blue-dark);
  transform: scale(1.1);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}



/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--blue-soft);
  color: var(--cream-light);
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--accent-light);
  color: var(--blue-dark);
  transform: scale(1.05);
}
:root {
  --blue-dark: #010b27;
  --blue-soft: #1E3A8A;
  --cream-light: #ac8d59;
  --cream-soft: #b38962;
  --accent-light: #93C5FD;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background-color: var(--blue-dark);
  color: var(--cream-light);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  text-align: left;
}

.hero-greeting {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--cream-soft);
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-name span {
  color: var(--cream-soft);
}

.hero-bio {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons .btn {
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.btn-primary-custom {
  background-color: var(--blue-soft);
  color: var(--cream-light);
  border: none;
}

.btn-primary-custom:hover {
  background-color: var(--accent-light);
  color: var(--blue-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary-custom {
  background-color: var(--cream-soft);
  color: var(--blue-dark);
  border: none;
}

.btn-secondary-custom:hover {
  background-color: var(--cream-light);
  color: var(--blue-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* SOCIAL ICONS */
.hero-socials a {
  color: var(--cream-light);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: 0.3s;
}

.hero-socials a:hover {
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* IMAGE */
.avatar-img-wrap {
  position: relative;
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.avatar-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.avatar-img-wrap img:hover {
  transform: scale(1.05);
}

/* FLOATING BADGES */
.float-card {
  position: absolute;
  background-color: var(--cream-soft);
  color: var(--blue-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}

.float-card:hover {
  transform: translateY(-6px);
}

.fc1 { top: 5%; left: -5%; }
.fc2 { bottom: 10%; right: -5%; }
.fc3 { bottom: -5%; left: 40%; }

/* SCROLL DOWN */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* RESPONSIVE */
@media(max-width: 991px) {
  .hero-text {
    text-align: center;
  }
  .avatar-img-wrap {
    width: 280px;
  }
  .float-card { display: none; }
}
.about-section {
  background-color: var(--blue-dark); /* #010b27 */
  color: var(--cream-light);
}

/* Section Header */
.section-tag {
  color: var(--cream-soft);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-title span {
  color: var(--cream-soft);
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* IMAGE */
.about-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* TEXT */
.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.about-name span {
  color: var(--cream-soft);
}

.about-role {
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--cream-soft);
}

.about-text {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* FACTS BADGES */
.about-facts .fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background-color: var(--blue-soft);
  color: var(--cream-light);
  border-radius: 12px;
  font-size: 0.9rem;
}

/* BUTTON */
.btn-primary-custom {
  background-color: var(--blue-soft);
  color: var(--cream-light);
  border-radius: 14px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--accent-light);
  color: var(--blue-dark);
  transform: scale(1.03);
}

/* Responsive */
@media(max-width: 991px) {
  .about-text, .about-role, .about-name {
    text-align: center;
  }
  .about-facts {
    justify-content: center;
  }
  .about-img {
    margin-bottom: 1.5rem;
  }
}
.skills-section {
  background-color: var(--blue-dark); /* full dark background */
  color: var(--cream-light);
}

/* Section Header */
.section-tag {
  color: var(--cream-soft);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-title span {
  color: var(--cream-soft);
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Skill Card */
.skill-card {
  background-color: var(--blue-dark);
  border: 1px solid var(--blue-soft);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.skill-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}

.skill-card h5 {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--cream-light);
}

.skill-bar-wrap {
  background-color: var(--blue-soft);
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.skill-bar-fill {
  height: 100%;
  background-color: var(--accent-light);
  border-radius: 8px;
  transition: width 0.6s ease;
}

.skill-pct {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-soft);
}

/* Responsive adjustments */
@media(max-width:991px){
  .skill-card {
    margin: 0 auto;
  }
}
/* STORIES / BLOG SECTION */
.blog-section {
  background-color: var(--blue-dark);  /* Dark blue background */
  color: var(--cream-light);
  padding: 5rem 0;
}

.story-video-card {
  background-color: var(--cream-light); /* Cream card background */
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.story-title {
  font-size: 1.15rem;
  color: var(--blue-dark);  /* Dark blue text */
  margin-top: 0.75rem;
  font-weight: 600;
}

.story-desc {
  font-size: 0.95rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.story-link {
  font-size: 0.9rem;
  color: var(--blue-soft);

}

.story-link:hover {
  color: var(--blue-dark);
  text-decoration: none;
}

/* Section header styling */
.section-tag {
  color: var(--cream-soft);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-light);
}

.section-title span {
  color: var(--blue-soft);
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--blue-soft);
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}
.youtube-about {
  background-color: var(--blue-dark);
  color: var(--cream-light);
  padding: 2rem 1.5rem;
  border-radius: 12px;
}

.about-channel-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream-light);
}

.about-channel-title span {
  color: var(--blue-soft);
}

.about-channel-text {
  font-size: 1rem;
  color: var(--cream-light);
  max-width: 700px;
  margin: 0.5rem auto 1rem;
  line-height: 1.6;
}

.youtube-about .btn-primary-custom {
  background-color: var(--blue-soft);
  color: var(--cream-light);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.youtube-about .btn-primary-custom:hover {
  background-color: var(--blue-dark);
  color: var(--cream-light);
}


.portfolio-section {
  background-color: var(--blue-dark);
  color: var(--cream-light);
}

.project-card {
  background-color: var(--blue-dark);
  border: 1px solid var(--blue-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.project-img {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--blue-soft);
}

.project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.proj-link {
  color: var(--cream-light);
  font-size: 1.5rem;
  background-color: var(--accent-light);
  padding: 0.5rem 0.6rem;
  border-radius: 50%;
  transition: background 0.3s;
}

.proj-link:hover {
  background-color: var(--cream-soft);
  color: var(--blue-dark);
}

.project-info {
  padding: 1rem;
}

.proj-cat {
  color: var(--accent-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.project-info h5 {
  color: var(--cream-light);
  margin: 0.4rem 0;
  font-weight: 600;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--cream-soft);
  margin-bottom: 0.5rem;
}

.proj-tags span {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--cream-light);
  background-color: var(--blue-soft);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* ---------------- Contact Section ---------------- */
.contact-section {
  background-color: #010b27; /* dark blue background */
  color: #ac8d59; /* cream text */
  padding: 100px 0;
}

.contact-section .section-header .section-tag {
  color: #b38962; /* lighter cream */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section .section-title {
  color: #ac8d59;
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-section .title-underline {
  width: 80px;
  height: 3px;
  background-color: #ac8d59;
  margin-top: 10px;
  border-radius: 2px;
}

/* -------- Contact Info Box -------- */
.contact-info-box {
  background-color: #010b27; /* dark blue box */
  border-radius: 12px;
  padding: 30px;
  color: #ac8d59;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-info-box h4 {
  color: #ac8d59;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.contact-info-item .ci-icon {
  background-color: #010b27; /* dark blue icon */
  color: #ac8d59;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-info-item .ci-icon:hover {
  background-color: #1e3a8a; /* hover lighter blue */
  transform: translateY(-2px);
}

.contact-info-item .ci-value {
  color: #ac8d59;
  font-weight: 500;
}
/* Placeholder text */
.contact-form-box .c-input::placeholder {
  color: #ac8d59; /* cream color */
  opacity: 0.5; /* ensures full visibility */
}
.contact-info-item .ci-value a {
  color: #010b27; /* dark blue text for links */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-item .ci-value a:hover {
  color: #1e3a8a; /* lighter dark blue */
}

/* -------- Social Links -------- */
.contact-info-box .social-links {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.contact-info-box .social-links a.soc {
  background-color: #010b27; /* dark blue */
  color: #ac8d59;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s, background-color 0.3s;
}

.contact-info-box .social-links a.soc:hover {
  background-color: #1e3a8a; /* hover lighter dark blue */
  transform: scale(1.15);
}

/* -------- Contact Form -------- */
.contact-form-box {
  background-color: #010b27; /* dark blue form */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-form-box .form-label {
  color: #ac8d59;
  font-weight: 500;
}

.contact-form-box .c-input {
  background-color: #010b27; /* dark input */
  border: 1px solid #1e3a8a;
  color: #ac8d59;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  transition: border-color 0.3s;
}

.contact-form-box .c-input:focus {
  border-color: #1e3a8a;
  outline: none;
}

/* Send Button */
.btn-send {
  background-color: #010b27; /* dark blue button */
  color: #ac8d59;
  border: 2px solid #ac8d59;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-send:hover {
  background-color: #1e3a8a; /* hover lighter dark blue */
  color: #fff;
  border-color: #1e3a8a;
}

/* -------- Form message -------- */
.form-msg {
  color: var(--cream-light); /* red for errors or messages */
  margin-top: 10px;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #010b27; /* dark blue background */
  color: #ac8d59; /* cream text */
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

footer a {
  color: #ac8d59; /* cream links */
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #93c5fd; /* light blue hover */
}

.ft-logo {
  font-size: 28px;
  font-weight: 700;
  color: #93c5fd;
}

.ft-logo span {
  color: #ac8d59;
}

.ft-about {
  margin: 15px 0;
  line-height: 1.6;
}

.social-links .soc {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #010b27; /* dark blue */
  border: 1px solid #93c5fd;
  border-radius: 50%;
  color: #93c5fd; /* icon color */
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links .soc:hover {
  background-color: #93c5fd;
  color: #010b27;
}

.ft-heading {
  color: #93c5fd;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ft-links {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: 10px;
}

.ft-links li a {
  font-size: 14px;
}

.ft-bottom {
  border-top: 1px solid #ac8d59;
  padding-top: 20px;
  color: #ac8d59;
  font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #010b27; /* dark blue */
  color: #93c5fd; /* light blue icon */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #93c5fd;
  font-size: 20px;
  z-index: 9999;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}

.back-to-top:hover {
  background-color: #93c5fd; /* light blue hover */
  color: #010b27; /* dark blue icon on hover */
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Optional: smooth scroll behavior */
html {
  scroll-behavior: smooth;
}