/* 
   OMOKEN MARCHE RENEWAL 
   Modern, Clean, BiND-Friendly CSS 
*/

:root {
  --primary-color: #333;
  --accent-color: #e67e22; /* Warm orange for a marche vibe */
  --bg-color: #f9f9f9;
  --card-bg: #ffffff;
  --text-color: #444;
  --font-main: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --spacing-unit: 1rem;
}

/* Reset & Base Styles */
* {
  box-sizing: border_box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Container */
.omoken-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* Header */
.omoken-header {
  background-color: var(--card-bg);
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.omoken-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.omoken-subtitle {
  font-size: 1rem;
  color: #888;
  font-weight: 300;
}

/* Schedule Section */
.omoken-section {
  margin-bottom: 4rem;
}

.omoken-section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.omoken-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.omoken-schedule-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.omoken-schedule-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.omoken-schedule-item:last-child {
  border-bottom: none;
}

.omoken-date {
  font-weight: bold;
  color: var(--primary-color);
}

.omoken-event-name {
  color: #666;
}

/* Gallery Grid */
.omoken-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.omoken-gallery-item {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omoken-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.omoken-gallery-image {
  width: 100%;
  height: 300px; /* Fixed height for uniformity */
  object-fit: cover;
  object-position: top; /* Focus on top of flyers usually */
}

.omoken-gallery-caption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.omoken-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
  margin-top: 4rem;
}

.omoken-footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .omoken-title {
    font-size: 1.5rem;
  }
  
  .omoken-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); /* 1 column on mobile */
    gap: 1.5rem;
  }
  
  .omoken-gallery-image {
    height: auto; /* Allow full height on mobile */
    max-height: 500px;
  }
}
