/*
Theme Name: MN Blank (Code-Only)
Theme URI: https://example.com/mn-blank
Author: ChatGPT
Author URI: https://example.com
Description: A minimal, uploadable WordPress theme with no blocks or styling. Renders raw HTML from /code/main.html. Ideal for code-only pages.
Version: 1.0.0
License: MIT
Text Domain: mn-blank
*/
html,body{
	margin:0;
	padding:0
	font-family: "Roboto", sans-serif;
	width: 100%;
}

/* Top of Main Page */
.shahid-intro-dark {
  background-color: #000000;
  color: #ffffff;
  padding: 130px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #000000;
}

.shahid-container-dark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.shahid-image-dark img {
  width: 800px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.4); /* subtle gold glow */
}

.shahid-quote-dark {
  border-left: 3px solid #d4af37; /* gold accent */
  padding-left: 25px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 700px;
}

.shahid-quote-dark p {
  margin-top: 20px;
  color: #d4af37;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 1px #d4af37;
}
.shahid-quote-dark h4 {
  margin-top: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
  text-shadow: 0 0 1px #ffffff;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1000;
}

header .logo {
  position: absolute;
  left: 5rem;
  top: 45%;
  transform: translateY(-50%);
}

header img {
  height: auto;
  width: 80px;
  display: block;
}

/* --- Desktop Navigation --- */
nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin-right: 40px;
  position: static;
  background-color: transparent;
  transform: none;
  height: auto;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.4px;
}

nav a:hover {
  text-shadow: 0 0 4px #ffffff;
}

/* Video + Theme1 side-by-side */
.video-theme-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 10%;
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #000;
  flex-wrap: wrap; /* stacks on small screens */
}

.video-theme-section .video-showcase,
.video-theme-section .theme1 {
  flex: 1 1 45%;
  max-width: 45%;
}

/* Video styling */
.video-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;      /* ensures everything lines up center */
  justify-content: center;
  text-align: center;
  padding: 40px 10px 30px;
  margin-right: 60px;
  border-radius: 16px;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.video-container {
  width: 100%;
  max-width: 640px;         /* matches common YouTube embed width */
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px #000;
}

.video-showcase iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-title,
.video-description {
  max-width: 640px;         /* aligns text with the video width */
  margin: 15px auto;        /* keeps consistent center alignment */
}

.video-title {
	color: #e53935;
	padding-top: 10px;
}

.video-description {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.button:hover {
  background: #7e0a0a;
  box-shadow: 0 0 8px #fff;
  color: #fff;
}

/* Theme1 styling (right side) */
.theme1 {
  width: 30%;
  height: auto;
  color: #000000;
  font-weight: 600;
}

.theme1 h3 {
  color: #000;
  font-size: 28px;
  margin-bottom: 5px;
  margin-top: 50px;
}

.theme1 h4 {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

.theme1 p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

/* Video Right */
.video-showcase2 {
  position: relative;
  left: 0;
  top: 100px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 10px 20px;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  color: #000000;
  border-radius: 12px;
  box-shadow: 0 0 10px #000000;
}

.video-container2 {
  position: relative;
  width: 95%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-left: 0;
}

.video-container2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Body Right */
h3 {
  font-weight: 200;
  font-size: 30px;
  color: #000000;
  text-shadow: 0 0 2px #000000;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-right: 50px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-right: 50px;
}

p {
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
  padding-bottom: 10px;
  margin-right: 50px;
}

/* Body Left */
h3.second-h3 {
  font-weight: 200;
  font-size: 30px;
  color: #000000;
  text-shadow: 0 0 2px #000000;
  text-align: right;
  margin-top: 45px;
  margin-bottom: 40px;
  margin-left: 50px;
}

h4.second-h4 {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 50px;
}

p.second-p {
  font-size: 18px;
  font-weight: 300;
  text-align: justify;
  padding-bottom: 10px;
  margin-left: 50px;
}

.theme2 {
  width: 30%;
  height: 560px;
  border-radius: 4px;
  padding-right: 0;
  padding-bottom: 30px;
  color: #000000;
  font-weight: 600;
  position: relative;
  left: 30px;
}

/* Footer */
footer.custom-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid #d4af37; /* gold accent */
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* even space between icons and text */
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.social-icon img {
  width: auto;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon:hover img {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #d4af37);
}

footer .copyright {
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.4px;
}