/* ===== STYLES DE BASE ===== */

/* Reset et styles de base */
* {
  box-sizing: border-box;
}

/* Container principal */
.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: #f0f0f0;
}

/* Cadre du téléphone - iPhone 16 Teal */
.phone-frame {
  position: relative;
  width: 620px;
  height: 1274px;
  border-radius: 103px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  background: linear-gradient(72deg, #628587 0%, #62747B 100%);
  border: 3.33px solid #45575E;
  box-shadow: 2.78px 2.78px 2.78px rgba(0,0,0,0.1);
}

/* Zone d'écran */
.phone-screen {
  position: absolute;
  width: 561px;
  height: 1216px;
  left: 19px;
  top: 21px;
  border-radius: 89px;
  overflow: hidden;
  background: #1C1C1C;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.8);
}

/* Contenu de l'écran */
.phone-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 89px;
  overflow: hidden;
}

/* Fond d'écran */
.wallpaper {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Barre de statut */
.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px 0 25px;
  height: 40px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
}

.status-bar-left {
  margin-right: 45px;
}

.status-bar-right {
  margin-left: 45px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.status-bar-time {
  font-size: 14px;
  font-weight: 500;
}

/* Grille d'applications */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 20px;
  margin-top: 60px;
  margin-bottom: 120px;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.app-icon:hover {
  transform: scale(1.05);
}

.app-icon-image {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.app-icon-name {
  font-size: 11px;
  color: #fff;
  text-align: center;
  margin-top: 6px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Dock */
.dock {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 320px;
  height: 75px;
  z-index: 50;
}

.dock-inner {
  background: rgba(255,255,255,0.25);
  border-radius: 35px;
  height: 75px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  padding: 8px 25px;
  gap: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.3);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dock-item:hover {
  transform: scale(1.05);
}

.dock-item .app-icon-image {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.dock-item .app-icon-name {
  display: none;
} 