/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2025 | 20:17:48 */
/* ==============================
   General Styles
   ============================== */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #444;
  line-height: 1.7;
}

.skills, .portfolio, .staging-video {
	margin-top: 10%;
}

/* ==============================
   Typography
   ============================== */
.header-content h1 {
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  font-size: 4rem;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  text-align: center;
  letter-spacing: -0.03em;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #2980b9;
  margin: 1rem auto;
  border-radius: 2px;
}

h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.6rem;
  color: #34495e;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ==============================
   Header Section
   ============================== */
.portfolio-header {
  background: #2980b9;
  padding: 6rem 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.portfolio-header p {
  font-size: 1.8rem;
  color: #ecf0f1;
  margin: 1.5rem auto;
  max-width: 600px;
  line-height: 1.8;
}

.portfolio-header a {
	text-align: center;
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  margin: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-header a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background: #2980b9; /* New background color */
  color: white; /* Change text color for contrast */
}


/* ==============================
   About Section
   ============================== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 20px;
}

.about img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.about p {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ==============================
   Skills Section
   ============================== */
.skill-items {
  display: grid;
  margin: auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  padding: 0 20px;
}

.skill-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skill-item:hover {
  transform: translateY(-5px);
}

.skill-item h3 {
	font-size: 2rem;
}

.skill-item p {
  font-size: 1.6rem;
  color: #666;
}

/* ==============================
   Portfolio Section
   ============================== */
.work-items, .video-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.work-item h3, .video-item h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-top: 1.5rem;
}
/* ==============================
   Youtube Section
   ============================== */
.youtube-channel-link {
  text-align: center;
  margin: 4rem 0 2rem;
}

.youtube-channel-link a {
  display: inline-flex;
  align-items: center; /* Align text and icon vertically */
  padding: 1rem 2.5rem;
  background: #ff0000; /* YouTube red */
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.youtube-channel-link a:hover {
  background: #cc0000;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* YouTube Icon */
.youtube-channel-link a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle; /* Ensures alignment with text */
}



/* ==============================
   Footer Section
   ============================== */
.portfolio-footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 3rem 20px;
  margin-top: 4rem;
}

.portfolio-footer a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio-footer a:hover {
  color: #3498db;
}

/* ==============================
   Responsive Design
   ============================== */
@media (max-width: 768px) {
  .portfolio-header {
    padding: 4rem 20px;
  }

  .work-items, .video-items {
    grid-template-columns: 1fr;
  }
}
