/*
Theme Name: ESEGAMES Careers
Theme URI: http://careers.esegames.com/
Author: Faithfultennyson
Author URI: http://esegames.com/
Description: A custom theme for ESEGAMES careers with dynamic job postings.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: esegames-careers
*/

/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #141414;
    color: #F5F5F7;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  /* Container for subtext without background */
  .subtext-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0;
    text-align: left;
  }
  
  /* New class for left aligned subtext for "Why Work With Us" */
  .subtext-left {
    max-width: 600px;
    margin: 1rem auto 1 auto;
    padding: 1rem 0;
    text-align: left;
  }
  
  /* For hero section, center the subtext */
  .hero-subtext {
    text-align: center;
  }
  
  /* Subtext styling */
  .subtext {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-style: italic;
  }
  
  /* Header */
  .site-header {
    background-color: #1E1E2F;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
  }
  .logo img {
    max-width: 100%;
  }
  .btn-visit {
    background-color: #FFAE00;
    border: none;
    color: #1E1E2F;
    transition: background-color 0.3s ease;
    padding: 0.5rem 1rem;
  }
  .btn-visit:hover {
    background-color: #e09b00;
    color: #fff;
  }
  
  /* Social Icons */
  .social-icon {
    width: 24px;
    height: auto;
  }
  @media (max-width: 576px) {
    .social-icon {
      width: 20px;
    }
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20,20,20,0.5);
  }
  .hero-section .container {
    position: relative;
    z-index: 1;
  }
  
  /* Custom Container for extra horizontal padding */
  .custom-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  @media (max-width: 576px) {
    .custom-container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  
  /* Accordion / Job Categories */
  .job-categories .accordion-button {
    background-color: #2980B9;
    color: #F5F5F7;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    text-align: left;
  }
  .job-categories .accordion-button .category-title {
    display: block;
  }
  .job-categories .accordion-button .category-description {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    color: #FFFFFF;
    font-weight: 300;
  }
  .job-categories .accordion-body {
    background-color: #1E1E2F;
    border-top: 1px solid #2a2a2a;
    padding: 1rem;
  }
  .job-link {
    color: #FFAE00;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
  }
  .job-link:hover {
    color: #e09b00;
  }
  
  /* Stay Connected Section */
  .stay-connected .stay-connected-info {
    background-color: #1E1E2F;
    padding: 1rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  /* Footer */
  .site-footer {
    background-color: #101010;
    color: #F5F5F7;
    padding: 2rem 0;
  }
  .site-footer a {
    color: #FFAE00;
  }
  
  /* Newsletter Modal Backdrop - tinted blue with full-screen blur */
  .modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(20px);
  }
  
  /* Newsletter Modal Styles */
  .newsletter-modal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 8px;
  }
  
  /* Newsletter Button */
  .btn-newsletter {
    background: linear-gradient(45deg, #2980B9, #1F618D);
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .btn-newsletter:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Additional margins and padding */
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  .mt-3 {
    margin-top: 1rem !important;
  }
  
  .category-title {
    font-weight: 700; /* Ensure a bolder weight */
    font-size: 1.5rem;/* Adjust font size or other properties as needed */
  }
  
  .job-notification-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-left: 5px;
  }
  