*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#0b0b0b;
color:white;
}

/* NAVBAR */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#000000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:inherit;
}

.logo img{
height:100px;
width:auto;
}

.logo h2{
font-size:28px;
font-weight:600;
}

.logo:hover{
opacity:0.85;
transition:0.3s;
}

nav a{
text-decoration:none;
color:white;
margin-left:25px;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#f5b041;
}

/* HERO */

.hero{
height:80vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:linear-gradient(180deg,#111,#000);
}

.hero h1{
font-size:48px;
color:#f5b041;
margin-bottom:10px;
}

.hero p{
font-size:18px;
color:#ccc;
max-width:600px;
}

.button{
display:inline-block;
margin-top:12px;
padding:8px 16px;
font-size:14px;
background:#f5b041;
color:black;
text-decoration:none;
border-radius:20px;
font-weight:600;
transition:0.3s;
}

.button:hover{
background:#ffd27a;
transform:scale(1.05);
}  

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

/* Hero section: full screen, center content */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* full viewport height */
  background-color: #121212; /* black background */
  text-align: center;
  padding: 0 20px;
}

/* Welcome line */
.welcome-line {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 5px rgba(255,255,255,0.2);
  animation: fadeInDown 2s ease forwards;
  opacity: 0;
}

/* Main channel name (yellow, no animation) */
.channel-name {
  font-size: 80px;
  font-weight: 800;
  color: #FFD700; /* yellow color */
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 15px(255,255,0,0.3);
}

/* Tagline */
.tagline {
  font-size: 28px;
  color: #ddd;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(255,255,255,0.2);
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

/* Fade animations */
@keyframes fadeInDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .welcome-line { font-size: 24px; }
  .channel-name { font-size: 50px; }
  .tagline { font-size: 20px; }
}

@media only screen and (max-width: 480px) {
  .welcome-line { font-size: 18px; }
  .channel-name { font-size: 35px; }
  .tagline { font-size: 16px; }
}

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

/* Hero section */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000; /* black background */
  text-align: center;
  padding: 0 20px;
}

/* Welcome line */
.welcome-line {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 5px rgba(255,255,255,0.2);
  animation: fadeInDown 2s ease forwards;
  opacity: 0;
}

/* Main channel name */
.channel-name {
  font-size: 80px;
  font-weight: 800;
  color: #FFD700; /* yellow color */
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 15px rgba(255,255,0,0.3);
  animation: fadeIn 2s ease forwards;
  opacity: 0;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

/* Tagline */
.tagline {
  font-size: 28px;
  color: #ddd;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(255,255,255,0.2);
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

/* Fade animations */
@keyframes fadeInDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* YouTube button */
.youtube-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background-color: #FF0000; /* YouTube red */
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(255,0,0,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite alternate;
}

/* Hover effect */
.youtube-btn:hover {
  background-color: #c70202;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 5px 15px #ffd900(255,0,0,0.4); }
  100% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); }
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .welcome-line { font-size: 24px; }
  .channel-name { font-size: 50px; }
  .tagline { font-size: 20px; }
  .youtube-btn { font-size: 16px; padding: 12px 30px; }
}

@media only screen and (max-width: 480px) {
  .welcome-line { font-size: 18px; }
  .channel-name { font-size: 35px; }
  .tagline { font-size: 16px; }
  .youtube-btn { font-size: 14px; padding: 10px 25px; }
}

/* SECTIONS */

.section{
padding:70px 10%;
text-align:center;
}

.section h2{
font-size:32px;
color:#f5b041;
margin-bottom:20px;
}

/* VIDEO GRID */

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:#121212;
padding:20px;
border-radius:10px;
transition:0.3s;
border:1px solid #222;
}

.card:hover{
transform:translateY(-8px);
border-color:#f5b041;
}

/* FOOTER */

footer{
background:#000;
padding:25px;
text-align:center;
color:#777;
margin-top:40px;
}

.saint-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.saint-card h3{
color:#f5b041;
margin-bottom:8px;
}

.saint-card p{
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* BACKGROUND ANIMATION */

.background-animation{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
overflow:hidden;
z-index:-1;
}

.background-animation span{
position:absolute;
display:block;
width:6px;
height:6px;
background:#f5b041;
border-radius:50%;
opacity:0.4;
animation:float 15s linear infinite;
}

/* random positions */

.background-animation span:nth-child(1){
left:10%;
animation-duration:18s;
}

.background-animation span:nth-child(2){
left:25%;
animation-duration:12s;
}

.background-animation span:nth-child(3){
left:40%;
animation-duration:20s;
}

.background-animation span:nth-child(4){
left:55%;
animation-duration:16s;
}

.background-animation span:nth-child(5){
left:70%;
animation-duration:14s;
}

.background-animation span:nth-child(6){
left:80%;
animation-duration:19s;
}

.background-animation span:nth-child(7){
left:90%;
animation-duration:13s;
}

.background-animation span:nth-child(8){
left:50%;
animation-duration:17s;
}

/* floating movement */

@keyframes float{

0%{
top:100%;
transform:translateX(0);
}

50%{
transform:translateX(50px);
}

100%{
top:-10%;
transform:translateX(-30px);
}

}

.card img{
width:100%;
border-radius:8px;
margin-bottom:12px;
}

.card h3{
color:#f5b041;
margin-bottom:6px;
}

.card p{
font-size:14px;
color:#ccc;
line-height:1.5;
}

/* Floating particles background */

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
background-image:
radial-gradient(white 2px, transparent 2px),
radial-gradient(white 1.5px, transparent 2px),
radial-gradient(white 1px, transparent 2px);
background-size:200px 200px, 300px 300px, 400px 400px;
opacity:0.15;
animation:particlesMove 120s linear infinite;
z-index:-1;
}


@keyframes particlesMove{

0%{
transform:translateY(0px);
}

100%{
transform:translateY(-500px);
}

}

/* Bottom floating particles */

.bottom-particles{
position:fixed;
bottom:0;
left:0;
width:100%;
height:180px;
overflow:hidden;
pointer-events:none;
z-index:-1;
}

/* individual particles */

.particle{
position:absolute;
bottom:-20px;
width:6px;
height:6px;
background:white;
border-radius:50%;
opacity:0.5;
animation:floatUp linear infinite;
}

/* slow floating animation */

@keyframes floatUp{

0%{
transform:translateY(0);
opacity:0;
}

20%{
opacity:0.6;
}

100%{
transform:translateY(-200px);
opacity:0;
}

}

/* Yellow particles */

.particle-yellow{
position:absolute;
bottom:-20px;
width:5px;
height:5px;
background:#f5b041;
border-radius:50%;
opacity:0.7;
animation:floatUpYellow linear infinite;
}

/* Faster yellow particle animation */

@keyframes floatUpYellow{

0%{
transform:translateY(0);
opacity:0;
}

20%{
opacity:0.8;
}

100%{
transform:translateY(-120px);
opacity:0;
}

}

.about-info{
font-size:22px;
font-weight:600;
color:#f5b041;
margin-top:10px;
}

.about-kabir {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

.about-kabir ul {
  margin-top: 10px;
  padding-left: 20px;
}

.about-kabir li {
  margin-bottom: 8px;
}

body{
font-family:'Poppins', sans-serif;
}

.contact-form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

.contact-form button{
padding:14px;
background:#cfa63a;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.spinner{
display:none;
width:18px;
height:18px;
border:3px solid #fff;
border-top:3px solid transparent;
border-radius:50%;
animation:spin 1s linear infinite;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}
