/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1a1a1a;
  color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #ff4500; /* Bright orange for contrast */
  color: #fff;
  text-align: center;
  padding: 1rem 0; /* Reduced padding for compactness */
}

header .logo img {
  width: 80px; /* Slightly smaller logo */
  height: 80px; /* Ensure the height matches the width for a perfect square */
  border-radius: 50%; /* Make the logo circular */
  margin-bottom: 0.5rem;
  object-fit: cover; /* Ensures the image scales properly without distortion */
}

header h1 {
  font-size: 2.5rem; /* Reduced font size */
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem; /* Reduced font size */
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a, #333); /* Dark gradient for contrast */
  color: #fff;
  text-align: center;
  padding: 5rem 0; /* Reduced padding for compactness */
  animation: fadeIn 1s ease-in-out;
}

.hero h1 {
  font-size: 3rem; /* Reduced font size */
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem; /* Reduced font size */
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #ff4500; /* Bright orange for contrast */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem; /* Reduced font size */
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background: #e63c00; /* Slightly darker orange on hover */
  transform: scale(1.05);
}

/* Latest Video */
.video {
  padding: 2rem 0;
}

.youtube-player iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Featured Content */
.featured-content {
  padding: 2rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.content-item {
  background: #333;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.content-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.content-item h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.content-item p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Social Media Links */
.socials {
  padding: 2rem 0; /* Add padding for spacing */
}

.socials ul.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.socials ul.social-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff; /* Text color for platform names */
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  background: #333; /* Background for buttons */
  transition: transform 0.3s ease, background 0.3s ease;
}

.socials ul.social-links li a:hover {
  transform: scale(1.1);
  background: #ff4500; /* Highlight on hover */
}

/* Social Media Icon Colors */
.socials ul.social-links li a i.fa-youtube {
  color: #ff0000; /* YouTube Red */
}

.socials ul.social-links li a i.fa-twitch {
  color: #6441a5; /* Twitch Purple */
}

.socials ul.social-links li a i.fa-twitter {
  color: #1da1f2; /* Twitter Blue */
}

.socials ul.social-links li a i.fa-instagram {
  color: #e1306c; /* Instagram Gradient (approximation) */
}

.socials ul.social-links li a i.fa-tiktok {
  color: #000000; /* TikTok Black */
}

.socials ul.social-links li a i.fa-facebook {
  color: #1877f2; /* Facebook Blue */
}

.socials ul.social-links li a i.fa-discord {
  color: #5865f2; /* Discord Blurple */
}

/* Contact Form */
.contact {
  padding: 2rem 0; /* Add padding for spacing */
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background: #444;
  color: #fff;
  font-size: 1rem;
}

.contact button {
  align-self: flex-start;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 0; /* Add more padding for spacing */
  margin-top: 2rem; /* Space between contact form and footer */
}

footer p {
  font-size: 1rem;
}

footer button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #ff4500;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Dark/Light Mode */
body.light-mode {
  background-color: #f9f9f9;
  color: #333;
}

body.light-mode header {
  background: #ff4500; /* Keep bright orange for contrast */
  color: #fff;
}

body.light-mode .hero {
  background: linear-gradient(135deg, #f9f9f9, #eaeaea); /* Light gradient for contrast */
  color: #333;
}

body.light-mode footer {
  background: #333;
  color: #fff;
}

body.light-mode .cta-button {
  background: #ff4500; /* Bright orange for contrast */
  color: #fff;
}

body.light-mode .cta-button:hover {
  background: #e63c00;
}