/* Lights on Staffing - Master CSS */
/* Ireland Flag Colors: Green #169B62, White #FFFFFF, Orange #FF883E */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ireland-green: #169B62;
    --ireland-orange: #FF883E;
    --ireland-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

/* Tab buttons (already done, included here for clarity) */
.tabs .tab:nth-child(1) {
  background-color: var(--ireland-green) !important;
  color: #fff !important;
}
.tabs .tab:nth-child(2) {
  background-color: var(--ireland-white) !important;
  color: #000 !important;
  border: 1px solid #ccc;
}
.tabs .tab:nth-child(3) {
  background-color: var(--ireland-orange) !important;
  color: #fff !important;
}

/* Tab content boxes */
#candidates {
  background: var(--ireland-green);
  color: #fff;
}

#employers {
  background: var(--ireland-white);
  color: #000;
}

#industries {
  background: var(--ireland-orange);
  color: #fff;
}

/* Optional: Add some padding and border-radius for a nicer look */
.tab-content {
  padding: 24px;
  border-radius: 8px;
  margin-top: 16px;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ireland-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-6 { flex: 0 0 50%; }
.col-8 { flex: 0 0 66.666667%; }
.col-12 { flex: 0 0 100%; }

.col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-12 {
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: var(--ireland-white);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--ireland-orange);
}

.nav-menu li a.btn {
    color: var(--ireland-white);
    font-weight: bold;
}

.nav-menu li a.btn:hover {
    color: var(--ireland-white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--ireland-orange);
    color: var(--ireland-white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--ireland-green);
    color: var(--ireland-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-white {
    background-color: var(--ireland-white);
    color: var(--text-dark);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.btn-white:hover {
    background-color: var(--ireland-green);
    color: var(--ireland-white);
    box-shadow: 0 4px 20px var(--shadow-medium), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Footer Styles */
.footer {
    background-color: #000000;
    color: var(--ireland-white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

footer p {
  color: var(--white);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: var(--ireland-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--ireland-green);
}

.footer-contact {
    text-align: right;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--ireland-white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px var(--shadow-dark);
    color: var(--ireland-white);
}

/* Form Styles */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--ireland-orange);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Two Column Section */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-section {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-family: "Georgia", serif;
    font-size: 4rem;
    color: var(--ireland-orange);
    margin-bottom: 20px;
    line-height: 1;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-title {
    color: var(--text-light);
    font-size: 14px;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Tabs Section */
.tabs-container {
    text-align: center;
    margin: 60px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.tab {
    padding: 15px 30px;
    background-color: var(--ireland-green);
    color: var(--ireland-white);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.tab.active {
    background-color: var(--ireland-orange);
}

.tab:hover {
    transform: translateY(-2px);
}

.tab-content {
    background-color: var(--ireland-orange);
    color: var(--ireland-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    display: none;
}

.tab-content.active {
    display: block;
    color: var(--ireland-white);
}

/* Cards Section */
.cards-container {
    text-align: center;
    margin: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--ireland-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.card-quote-icon {
    font-family: "Georgia", serif;
    font-size: 3rem;
    color: var(--ireland-orange);
    margin-bottom: 20px;
    line-height: 1;
}

.card-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--ireland-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow-light);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-form {
        padding: 20px;
    }
    
    .card {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }



.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr; /* narrow fixed column for icon + flexible for content */
  gap: 30px;
  background: var(--ireland-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-light);
  align-items: center;
}

.feature-icon {
  font-size: 4.5rem;
  color: var(--ireland-orange);
  text-align: center;
}

.feature-content h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .feature-item {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .feature-icon {
    margin-bottom: 15px;
  }
}
