/*
 * locations.css - Styles for the Locations page
 */

/* General container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Hero Section - Consistent with other pages */
.page-hero {
  position: relative;
  background: url('../images/build1.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 150px 20px 80px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.726); /* درجة التعتيم */
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(112, 112, 112, 0.822) 100%);
  z-index: 2;
}


.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}


/* Shared Section Heading */
.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: none
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card .fa-map-marker-alt {
    font-size: 2.5rem;
    color: #ff6a00;
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.location-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-card p:last-of-type {
    margin-bottom: 25px;
}

.directions-link {
    color: #ff6a00;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff6a00;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.directions-link:hover {
    background-color: #ff6a00;
    color: #fff;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}