/*
  Theme Name: Express IT Solutions
  Theme URI: https://www.expresssupport.com/
  Author: Express Support
  Author URI: https://www.expresssupport.com/
  Description: A custom WordPress theme built for Eye Consulatants
  Version: 1.1
*/

:root {
  --primary-text: #1a202c;
  --secondary-text: #4a5568;
  
  /* NEW BLUE PALETTE */
  --accent-color: #3182ce;        /* Professional Royal Blue */
  --accent-hover: #2b6cb0;        /* Slightly darker blue for hover */
  --heading-color: #2c5282;       /* Deep Navy Blue for headings */
  
  --card-bg: #ffffff;
  --bg-color: #ffffff;
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --card-hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  
  /* Utility for the Lunch Break background in the cards */
  --light-blue-bg: #ebf8ff; 
}

body.temp-body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--primary-text);
  overflow-x: hidden;
}

.temp-header {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  padding: 0 5%;
}

.temp-logo {
  max-width: 220px;
  height: auto;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  padding-right: 40px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-text);
  margin-bottom: 25px;
}

.hero-title span {
  color: var(--heading-color);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary-text);
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(247, 85, 144, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(247, 85, 144, 0.4);
  color: #fff;
}

.hero-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  width: 800px;
  object-fit: contain;
  transform: translateX(5%);
}

/* OFFICES SECTION */
.offices-section {
  padding: 80px 5%;
  background-color: #f8fafc;
}

.temp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.temp-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.temp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.temp-card h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-text);
  margin-top: 0;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f1f5f9;
}

.temp-card h2 i {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.4rem;
}

.temp-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.temp-info-list li {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  font-size: 1.05rem;
  color: var(--secondary-text);
}

.temp-info-list li strong {
  color: var(--primary-text);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.temp-info-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 20px;
  margin-top: 5px;
}

.temp-info-list a {
  color: var(--primary-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.temp-info-list a:hover {
  color: var(--accent-color);
}

.temp-hours {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--secondary-text);
}

.temp-hours strong {
  color: var(--primary-text);
  font-weight: 500;
}

.temp-hours:last-child {
  border-bottom: none;
}

.temp-hours.break {
  color: #3182ce;
  background-color: #E8F5E9;  /* Light Green Background */
  padding: 12px 18px;
  border-radius: 8px;
  border-bottom: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.temp-footer {
  text-align: center;
  font-weight: bold;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    padding-top: 120px;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    transform: translateX(0);
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .temp-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}