/* styles.css */
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {  min-height:100vh; }
body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif; 
  line-height: 1.6; 
  color: #333;
  min-height: 100vh; 
}
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }

/* Header */
.site-header { background: #191745; border-bottom: 1px solid #191745; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 1em 0; }
.logo img { height: 60px; }
nav a { margin-left: 1em; font-weight: 500; color: #fff; }

/* Hero */
.hero { position: relative; background: url('assets/hero.jpg') center/cover no-repeat; height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; text-align: center; color: #fff; }
.hero h2 { font-size: 2.5rem; margin-bottom: 0.5em; }
.hero p { font-size: 1.125rem; margin-bottom: 1em; }
.btn { display: inline-block; background: #00c7b7; color: #fff; padding: 0.75em 1.5em; border: none; border-radius: 0.5em; font-weight: 500; cursor: pointer; }
.btn:hover { opacity: 0.9; }

/* Services */
.services { padding: 3em 0; }
.services .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2em; }
.service-card { background: #f9f9f9; padding: 2em; border-radius: 0.75em; box-shadow: 0 2px 8px rgba(0,0,0,0.1); text-align: center; }
.service-card img { height: 180px; margin-bottom: 1em; border-radius: 0.75em}
.service-card h3 { margin-bottom: 0.5em; color:#191745;}

/* Featured App */
.featured-app { background: #486156; padding: 3em 0; color: #fff; }
.featured-app .featured-content { display: flex; flex-wrap: wrap; align-items: center; gap: 2em; margin-bottom: 1.5em; }
.featured-app img { max-width: 300px; width: 100%; border-radius: 0.75em; background:#6B9080; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.featured-app .featured-text { flex: 1; }
.featured-app .btn { background: #fff; color: oklch(62.08% .0478 166.41); }

/* Sous Screenshot Gallery */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 120px);
  gap: 0.5em;
  justify-content: center;
}
.screenshot-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.screenshot-gallery img { width: 100%; max-width: 120px; height: auto; border-radius: 0.5em; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Support Info */
.support-info { padding: 3em 0; }

/* Footer */
.site-footer { background: #f5f5f5; padding: 1.5em 0; text-align: center; margin-top: auto; }