:root {
  --bg-dark: #0d0d0d;
  --bg-light: #f4f4f4;
  --text-dark: #ffffff;
  --text-light: #111111;
  --accent1: #ff3b62;
  --accent2: #ff7a3d;
}

/* Dark + Light themes */
body.dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}
body.light {
  background: var(--bg-light);
  color: var(--text-light);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 60;
}
body.light .site-header {
  background: #e0e0e0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-container {
  text-align: center;
}

.logo-name {
  margin-top: 5px;
  font-size: 16px;
  font-weight: bold;
}


.main-nav a {
  margin-right: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}
body.light .main-nav a {
  color: #111;
}
.main-nav a.active,
.main-nav a:hover {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
#search {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  background: #222;
  color: #fff;
}
body.light #search {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
}
.btn-pill {
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  cursor: pointer;
}

/* HERO Section */
.hero {
  text-align: center;
  padding: 80px 20px; /* more vertical space */
  background: linear-gradient(135deg, rgba(13,13,13,0.9), rgba(28,28,28,0.9));
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  margin: 40px auto;
  max-width: 900px;
  color: #fff;
}

body.light .hero {
  background: #fff;
  color: #111;
}

.hero h1 {
  font-size: 42px;
  color: var(--accent1);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .lead {
  font-size: 20px;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: var(--text-dark);
}

body.light .hero .lead {
  color: #333;
}

.hero .bullets {
  list-style: disc inside;
  text-align: left;
  margin: 0 auto 25px;
  max-width: 700px;
  padding-left: 20px;
}

.hero .bullets li {
  font-size: 16px;
  line-height: 1.5;
  margin: 8px 0;
}

.hero .subscribe {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero .subscribe input {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  width: 260px;
  background: #222;
  color: #fff;
  font-size: 16px;
}

body.light .hero .subscribe input {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
}

.hero .subscribe .btn-action {
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero .subscribe .btn-action:hover {
  transform: scale(1.05);
}

.hero .extra-info {
  font-size: 16px;
  color: var(--accent2);
  font-weight: 500;
  margin-top: 15px;
}

 
/* Portfolio */
.portfolio-section {
  padding: 70px 20px; /* slightly increased spacing */
  text-align: center;
}
.portfolio-section h2 {
  color: var(--accent1);
  margin-bottom: 20px;
}
.sub {
  color: #aaa;
  margin-bottom: 20px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.filter-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px; /* increased spacing for clarity */
}
.card {
  background: #1c1c1c;
  padding: 12px; /* slightly more padding */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
}
.play::after {
  content: "";
  display: block;
  margin: 15px auto;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.title {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}
body.light .card {
  background: #fff;
  color: #111;
}
body.light .title {
  color: #111;
}

/* About & Contact */
.about,
.contact {
  padding: 80px 20px; /* more vertical space */
  text-align: center;
  background: linear-gradient(120deg, rgba(13,13,13,0.9), rgba(28,28,28,0.9));
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  margin: 40px auto;
  max-width: 900px;
  color: #fff;
}
body.light .about,
body.light .contact {
  background: #fff;
  color: #111;
}

.about h2,
.contact h2 {
  color: var(--accent1);
  margin-bottom: 20px;
  font-size: 36px;
  text-shadow: 0 0 8px #ff3b62;
}

.about p,
.contact p {
  max-width: 700px;
  margin: 0 auto 15px;
  line-height: 1.7;
  font-size: 16px;
}

.about ul {
  list-style: disc inside;
  text-align: left;
  margin: 20px auto;
  max-width: 700px;
  padding-left: 20px;
}

.about ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

body.light .about p,
body.light .contact p,
body.light .about ul li {
  color: #333;
}

/* Optional subtle hover effect for about section */
.about:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Contact Form */
.contact form {
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  background: #222;
  color: #fff;
  width: 100%;
}

body.light .contact input,
body.light .contact textarea {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
}

.contact textarea {
  resize: none;
}

.contact .btn-action {
  align-self: flex-start;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact .btn-action:hover {
  transform: scale(1.05);
}

/* Section style consistent with About */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(120deg, rgba(13,13,13,0.9), rgba(28,28,28,0.9));
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  margin: 40px auto;
  max-width: 900px;
  color: #fff;
}
body.light .contact {
  background: #fff;
  color: #111;
}

/* Add spacing between all sections */
section {
  margin-bottom: 60px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.hidden {
  display: none;
}
.lb-content {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.lb-content iframe {
  width: 100%;
  height: 100%;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.btn-action {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}
.btn-action:hover {
    background-color: #45a049;
}