h1 {
	font-size: 3em;
	color: #AE633F; /* Caramel brown */
}
.expo_button {
	display: inline-block;
	padding: 10px 20px;
	margin-top: 15px;
	font-size: 1em;
	color: #ffffff;
	background: #AE633F; /* Brown color */
	border: none;
	border-radius: 8px; /* Rounded edges */
	text-align: center;
	text-decoration: none;
}
.expo_button:hover {
	background: #a06b2e;
}
.expo {
	padding: 20px;
	max-width: 800px;
	margin: 20px auto;
	background: #fdf4e3; /* Cream color */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.expo_workshops {
	padding: 20px;
	max-width: 800px;
	margin: 20px auto;
	background: #fdf4e3; /* Cream color */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.expo_left {
	flex: 1;
	max-width: 35%;
	display: flex;
	align-items: flex-start;
	font-size: 1.2em;
	padding-top: 10vh;
}
.expo_right {
	flex: 2;
}
.expo-top-section {
	position: relative;
	background: url('img/expo_page_graphics_header.jpg') no-repeat center center;
	background-size: cover;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.expo-top-content {
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	max-width: 600px;
}
.expo-top-content h1 {
	font-size: 2.5em;
	color: #000;
	margin: 0;
}
.expo-top-content p {
	font-size: 0.9em;
	line-height: 1.6;
	color: #000;
	margin: 10px 0;
}
.expo-top-content a {
	font-size: 1em;
	color: #000;
	text-decoration: none;
}
.expo-top-content a:hover {
	text-decoration: underline;
}
.workshop-item {
  max-width: 400px; 
  margin: 0 auto; /* centers the image if narrower than the column */
}
.workshop-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #fff;
  border-radius: 4px;
}
/*
  .workshop-container is now given a max-width and margin: 0 auto
  to center it on the page. It remains a flex container for
  the three columns (left, center, right).
*/
.workshop-container {
  display: flex;
  justify-content: space-between; /* space between columns */
  align-items: stretch;          /* all columns get same (max) height */
  gap: 20px;                     /* horizontal gap between columns */
  flex-wrap: nowrap;             /* keep them on one row */

  max-width: 1200px;            /* set a container width or max-width */
  margin: 0 auto;               /* center horizontally on the page */
}
/* 
  Each column (left, center, right) is flex in column direction
  so images stack vertically. 'gap' adds vertical spacing.
*/
.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;   /* both left and right columns expand/shrink equally */
}
/*
  The center column is also flex in column direction,
  but uses 'justify-content: center;' to vertically center
  its single image. 
*/
.center-column {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center in column */
  align-items: center;     /* horizontal center if narrower */
  gap: 20px;               /* not really necessary for one image, but consistent */
  flex: 0 0 300px;         /* fixed column width for the center image */
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
/* --- Info row (address and phone) --- */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 40px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.info-item .emoji {
  font-size: 1.5rem; /* adjust as needed */
  flex-shrink: 0;
  margin-top: 2px; /* helps visually center the emoji */
}
/* --- Horizontal line separator --- */
.divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}
/* --- Map container --- */
.map-container {
  position: relative;
  padding-bottom: 60%; /* Gives map a responsive height (3:2 ratio) */
  height: 0;
  overflow: hidden;
}
.map-container img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border: 0;
  cursor: pointer;
}

.social-callout {
	padding: 24px;
	max-width: 850px;
	margin: 20px auto;
	background-color: #fff8ee;
	border-radius: 10px;
	border: 1px solid #e2c9a2;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.social-callout-header h3 {
	margin: 0 0 10px;
	color: #7a4d2a;
}

.social-callout-header p {
	margin: 0;
	line-height: 1.6;
	color: #4b341b;
}

.social-badge-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.social-badge-card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.social-badge-card h4 {
	margin: 14px 0 0;
	color: #7a4d2a;
	text-align: center;
}

.social-badge-link {
	display: block;
	width: 66.6667%;
	margin: 0 auto;
	text-decoration: none;
}

.social-badge-link.is-disabled {
	cursor: default;
}

.social-badge-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	border: 1px solid #e2c9a2;
	background-color: #ffffff;
}

/* Legal notice section */
.legal {
	padding: 20px;
    max-width: 850px;
    margin: 20px auto;	
	background-color: #fdf3e3;
	border-radius: 10px;
	border: 1px solid #e2c9a2;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.legal-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.legal-image {
	flex: 0 0 auto;
	width: 120px;
	max-width: 30vw;
	height: auto;
}

.legal-text {
	font-size: 0.98rem;
	line-height: 1.6;
	color: #4b341b;
}

.legal-text strong {
	font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.social-callout {
		padding: 1.25rem 1rem;
	}

	.social-badge-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.legal {
		padding: 1.25rem 1rem;
	}

	.legal-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.legal-image {
		width: 100px;
		max-width: 40vw;
	}

	.legal-text {
		font-size: 0.95rem;
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
  .workshop-container {
	flex-direction: column;    /* Stack columns vertically */
	align-items: center;       /* Center the columns */
	gap: 20px;                 /* Vertical gap between columns */
  }

  .left-column,
  .center-column,
  .right-column {
	flex: none;                /* Remove flex properties */
	width: 100%;               /* Make columns full width */
	display: flex;
	flex-direction: column;    /* Ensure items stack vertically within each column */
	gap: 20px;                 /* Consistent spacing between images */
  }

  .workshop-item {
	max-width: 100%;           /* Allow images to take full width of their container */
  }
}
